You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.2 KiB
75 lines
2.2 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
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;
|
|
}
|
|
}
|
|
|