UserExt.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace app\admin\model\user;
  3. use think\Model;
  4. class UserExt extends Model
  5. {
  6. // 表名
  7. protected $name = 'user_ext';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = false;
  10. // 定义时间戳字段名
  11. protected $createTime = false;
  12. protected $updateTime = false;
  13. protected $deleteTime = false;
  14. // 追加属性
  15. protected $append = [
  16. 'education_text'
  17. ];
  18. public function getEducationList()
  19. {
  20. return ['0' => __('Education 0'), '1' => __('Education 1'), '2' => __('Education 2'), '3' => __('Education 3'), '4' => __('Education 4'), '5' => __('Education 5'), '6' => __('Education 6'), '7' => __('Education 7'), '8' => __('Education 8'), '9' => __('Education 9')];
  21. }
  22. public function getEducationTextAttr($value, $data)
  23. {
  24. $value = $value ? $value : (isset($data['education']) ? $data['education'] : '');
  25. $list = $this->getEducationList();
  26. return isset($list[$value]) ? $list[$value] : '';
  27. }
  28. }