| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\tenant;
- use app\api\validate\PasswordValidate;
- use app\adminapi\controller\BaseAdminController;
- use app\adminapi\lists\tenant\TenantAdminLists;
- use app\adminapi\logic\tenant\TenantAdminLogic;
- use app\adminapi\validate\tenant\TenantAdminValidate;
- /**
- * 租户账号用户控制器
- * Class TenantController
- * @package app\adminapi\controller\user
- */
- class TenantAdminController extends BaseAdminController
- {
- /**
- * @notes 获取租户管理员账号 租户查询参数必传防止越权查看
- * @return \think\response\Json
- * @author yfdong
- * @date 2024/09/04 22:11
- */
- public function lists()
- {
- return $this->dataLists(new TenantAdminLists());
- }
- /**
- * @notes 获取租户管理员账号 租户id以及主键id查询参数必传 防止越权查看
- * @return \think\response\Json
- * @author yfdong
- * @date 2024/09/04 22:14
- */
- public function detail()
- {
- $params = (new TenantAdminValidate())->goCheck('detail');
- $result = TenantAdminLogic::detail($params['id']);
- if (false === $result) {
- return $this->fail(TenantAdminLogic::getError());
- }
- return $this->success('获取成功', $result);
- }
- /**
- * @notes 创建租户管理员账号
- * @return \think\response\Json
- * @author yfdong
- * @date 2024/09/04 22:58
- */
- public function add()
- {
- $params = (new TenantAdminValidate())->post()->goCheck('add');
- $result = TenantAdminLogic::add($params);
- if (true === $result) {
- return $this->success('操作成功', [], 1, 1);
- }
- return $this->fail(TenantAdminLogic::getError());
- }
- /**
- * @notes 编辑租户管理员账号
- * @return \think\response\Json
- * @author yfdong
- * @date 2024/09/04 22:58
- */
- public function edit()
- {
- $params = (new TenantAdminValidate())->post()->goCheck('edit');
- $result = TenantAdminLogic::edit($params);
- if (true === $result) {
- return $this->success('操作成功', [], 1, 1);
- }
- return $this->fail(TenantAdminLogic::getError());
- }
- /**
- * @notes 删除租户管理员账号
- * @return \think\response\Json
- * @author yfdong
- * @date 2024/09/04 22:59
- */
- public function delete()
- {
- $params = (new TenantAdminValidate())->post()->goCheck('delete');
- $result = TenantAdminLogic::delete($params);
- if (true === $result) {
- return $this->success('删除成功', [], 1, 1);
- }
- return $this->fail(TenantAdminLogic::getError());
- }
- }
|