// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\admin\model\store; use app\common\model\store\User as StoreUserModel; /** * 商家用户模型 * Class StoreUser * @package app\admin\model */ class User extends StoreUserModel { /** * 新增商家用户记录 * @param int $storeId * @param array $data * @return bool|false */ public function add(int $storeId, array $data): bool { return $this->save([ 'user_name' => $data['user_name'], 'password' => encryption_hash($data['password']), 'is_super' => 1, 'store_id' => $storeId, ]); } /** * 商家用户登录 * @param int $storeId * @throws \cores\exception\BaseException * @throws \think\Exception */ public function login(int $storeId) { // 获取该商户管理员用户信息 $userInfo = $this->getSuperStoreUser($storeId); if (empty($userInfo)) { throwError('超级管理员用户信息不存在'); } } /** * 获取该商户管理员用户信息 * @param int $storeId * @return static|null */ private function getSuperStoreUser(int $storeId): ?User { return static::detail(['store_id' => $storeId, 'is_super' => 1], ['wxapp']); } /** * 删除小程序下的商家用户 * @param int $storeId * @return bool|false */ public static function setDelete(int $storeId): bool { static::update(['is_delete' => '1'], ['store_id' => $storeId]); return true; } }