mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-23 07:40:18 +00:00
19 lines
371 B
PHP
19 lines
371 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
use think\facade\Config;
|
|
|
|
class User extends Model
|
|
{
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
|
|
public function getAvatarAttr($value)
|
|
{
|
|
return full_url($value, true, Config::get('buildadmin.default_avatar'));
|
|
}
|
|
} |