TalentUserModel.php 375 B

1234567891011121314151617181920
  1. <?php
  2. namespace app\common\model;
  3. class TalentUserModel extends BaseModel
  4. {
  5. // 设置表名
  6. protected $name = 'talent_user';
  7. // 常量
  8. const STATUS = [1 => '正常', 2 => '禁用'];
  9. const STATUS_NORMAL = 1;
  10. const STATUS_DISABLE = 2;
  11. public function getStatusTextAttr($value, $data)
  12. {
  13. return self::STATUS[$data['status']];
  14. }
  15. }