multi-store/app/common/model/system_store/SystemStoreStaff.php
2024-06-06 15:00:33 +08:00

35 lines
768 B
PHP

<?php
namespace app\common\model\system_store;
use app\common\model\BaseModel;
use app\common\service\FileService;
use think\model\concern\SoftDelete;
/**
* 门店列表模型
* Class SystemStore
* @package app\common\model\system_store
*/
class SystemStoreStaff extends BaseModel
{
use SoftDelete;
protected $name = 'system_store_staff';
protected $deleteTime = 'delete_time';
/**
* @notes 头像获取器 - 头像路径添加域名
* @param $value
* @return string
* @author Tab
* @date 2021/7/13 11:35
*/
public function getAvatarAttr($value)
{
return empty($value) ? FileService::getFileUrl(config('project.default_image.admin_avatar')) : FileService::getFileUrl(trim($value, '/'));
}
}