1234567891011121314151617 |
- <?php
- declare (strict_types = 1);
- namespace app\model;
- use think\Model;
- /**
- * @mixin \think\Model
- */
- class Account extends Model
- {
- public static $account_start=1;
- public static $account_end=0;
- public static $account_del=0;
- }
|