<?php namespace app\admin\model; use think\Model; class User extends Model { // 表名 protected $name = 'user'; // 自动写入时间戳字段 protected $autoWriteTimestamp = 'int'; // 定义时间戳字段名 protected $createTime = 'createtime'; protected $updateTime = 'updatetime'; protected $deleteTime = false; // 追加属性 protected $append = [ 'is_new_text', 'level_text', 'sex_text' ]; public function getIsNewList() { return ['0' => __('Is_new 0'), '1' => __('Is_new 1')]; } public function getLevelList() { return ['1' => __('Level 1'), '2' => __('Level 2'), '3' => __('Level 3'), '4' => __('Level 4'), '5' => __('Level 5'), '6' => __('Level 6'), '7' => __('Level 7'), '8' => __('Level 8')]; } public function getSexList() { return ['1' => __('Sex 1'), '2' => __('Sex 2')]; } public function getIsNewTextAttr($value, $data) { $value = $value ? $value : (isset($data['is_new']) ? $data['is_new'] : ''); $list = $this->getIsNewList(); return isset($list[$value]) ? $list[$value] : ''; } public function getLevelTextAttr($value, $data) { $value = $value ? $value : (isset($data['level']) ? $data['level'] : ''); $list = $this->getLevelList(); return isset($list[$value]) ? $list[$value] : ''; } public function getSexTextAttr($value, $data) { $value = $value ? $value : (isset($data['sex']) ? $data['sex'] : ''); $list = $this->getSexList(); return isset($list[$value]) ? $list[$value] : ''; } }