Account.php 234 B

1234567891011121314151617
  1. <?php
  2. declare (strict_types = 1);
  3. namespace app\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class Account extends Model
  9. {
  10. public static $account_start=1;
  11. public static $account_end=0;
  12. public static $account_del=0;
  13. }