12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace app\admin\model\user;
- use think\Model;
- class UserExt extends Model
- {
-
-
- // 表名
- protected $name = 'user_ext';
-
- // 自动写入时间戳字段
- protected $autoWriteTimestamp = false;
- // 定义时间戳字段名
- protected $createTime = false;
- protected $updateTime = false;
- protected $deleteTime = false;
- // 追加属性
- protected $append = [
- 'education_text'
- ];
-
-
- public function getEducationList()
- {
- 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')];
- }
- public function getEducationTextAttr($value, $data)
- {
- $value = $value ? $value : (isset($data['education']) ? $data['education'] : '');
- $list = $this->getEducationList();
- return isset($list[$value]) ? $list[$value] : '';
- }
- }
|