| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 | <?phpnamespace app\admin\model\user;use think\Model;class User extends Model{            // 表名    protected $name = 'user';        // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    protected $deleteTime = false;    // 追加属性    protected $append = [        'gender_text',        'logintime_text',        'wechat_time_text',        'auth_time_text',        'is_auth_text',        'is_goddess_text',        'vip_duetime_text',        'recharge_auth_text',        'invite_time_text'    ];            public function getGenderList()    {        return ['1' => __('Gender 1'), '-1' => __('Gender -1')];    }    public function getIsAuthList()    {        return ['1' => __('Is_auth 1'), '0' => __('Is_auth 0')];    }    public function getIsGoddessList()    {        return ['1' => __('Is_goddess 1'), '0' => __('Is_goddess 0')];    }    public function getRechargeAuthList()    {        return ['1' => __('Recharge_auth 1'), '0' => __('Recharge_auth 0')];    }    public function getStatusList()    {        return ['normal' => __('Normal'), 'hidden' => __('Hidden')];    }    public function getGenderTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['gender']) ? $data['gender'] : '');        $list = $this->getGenderList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getLogintimeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['logintime']) ? $data['logintime'] : '');        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;    }    public function getWechatTimeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['wechat_time']) ? $data['wechat_time'] : '');        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;    }    public function getAuthTimeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['auth_time']) ? $data['auth_time'] : '');        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;    }    public function getIsAuthTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['is_auth']) ? $data['is_auth'] : '');        $list = $this->getIsAuthList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getIsGoddessTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['is_goddess']) ? $data['is_goddess'] : '');        $list = $this->getIsGoddessList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getVipDuetimeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['vip_duetime']) ? $data['vip_duetime'] : '');        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;    }    public function getRechargeAuthTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['recharge_auth']) ? $data['recharge_auth'] : '');        $list = $this->getRechargeAuthList();        return isset($list[$value]) ? $list[$value] : '';    }    public function getInviteTimeTextAttr($value, $data)    {        $value = $value ? $value : (isset($data['invite_time']) ? $data['invite_time'] : '');        return is_numeric($value) ? date("Y-m-d H:i:s", $value) : $value;    }    protected function setLogintimeAttr($value)    {        return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);    }    protected function setWechatTimeAttr($value)    {        return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);    }    protected function setAuthTimeAttr($value)    {        return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);    }    protected function setVipDuetimeAttr($value)    {        return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);    }    protected function setInviteTimeAttr($value)    {        return $value === '' ? null : ($value && !is_numeric($value) ? strtotime($value) : $value);    }}
 |