User.php 226 B

1234567891011121314
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class User extends Model
  5. {
  6. protected $table = "jm_users";
  7. protected $pk = "uid";
  8. protected $autoWriteTimestamp = true;
  9. const NORMALSTATUS = 1; // 账号正常状态
  10. }