Apply.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace app\admin\model\user;
  3. use think\Model;
  4. class Apply extends Model
  5. {
  6. // 表名
  7. protected $name = 'user_apply';
  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. 'user_type_text'
  18. ];
  19. public function getEducationList()
  20. {
  21. 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')];
  22. }
  23. public function getUserTypeList()
  24. {
  25. return ['0' => __('User_type 0'), '1' => __('User_type 1'), '2' => __('User_type 2')];
  26. }
  27. public function getEducationTextAttr($value, $data)
  28. {
  29. $value = $value ? $value : (isset($data['education']) ? $data['education'] : '');
  30. $list = $this->getEducationList();
  31. return isset($list[$value]) ? $list[$value] : '';
  32. }
  33. public function getUserTypeTextAttr($value, $data)
  34. {
  35. $value = $value ? $value : (isset($data['user_type']) ? $data['user_type'] : '');
  36. $list = $this->getUserTypeList();
  37. return isset($list[$value]) ? $list[$value] : '';
  38. }
  39. }