123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- // +----------------------------------------------------------------------
- // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2017~2024 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;
- }
- }
|