| 123456789101112131415161718192021222324252627282930313233343536373839 | <?php/** * Created by PhpStorm. * User: zhengmingwei * Date: 2020/3/8 * Time: 7:25 PM */namespace addons\unishop\model;use think\Model;/** * 基础用户表 * Class User * @package addons\unishop\model */class User extends Model{    // 表名    protected $name = 'user';    // 自动写入时间戳字段    protected $autoWriteTimestamp = 'int';    // 定义时间戳字段名    protected $createTime = 'createtime';    protected $updateTime = 'updatetime';    public function getAvatarAttr($value)    {        $value = $value != '' ? $value : Config::getByName('avatar')['value'];        return Config::getImagesFullUrl($value);    }    public function getUsernameAttr($value, $data) {        return $data['username'] ? $data['username'] : __('Tourist');    }}
 |