// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\common\model\store; use app\common\model\BaseModel; /** * 商家用户模型 * Class User * @package app\common\model */ class User extends BaseModel { // 定义表名 protected $name = 'store_user'; // 定义主键 protected $pk = 'store_user_id'; /** * 关联商家记录表 * @return \think\model\relation\BelongsTo */ public function store() { $module = self::getCalledModule(); return $this->belongsTo("app\\{$module}\\model\\Store", 'store_id'); } /** * 关联用户角色表表 * @return \think\model\relation\BelongsToMany */ public function role() { return $this->belongsToMany('Role', 'StoreUserRole'); } /** * 验证用户名是否重复 * @param string $userName * @return bool */ public static function checkExist(string $userName) { return (bool)static::withoutGlobalScope() ->where('user_name', '=', $userName) ->where('is_delete', '=', 0) ->value('store_user_id'); } /** * 商家用户详情 * @param $where * @param array $with * @return array|static|null */ public static function detail($where, array $with = []) { return static::get($where, $with); } }