108 lines
3.0 KiB
PHP
108 lines
3.0 KiB
PHP
<?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\safety;
|
||
|
||
|
||
use app\adminapi\controller\BaseAdminController;
|
||
use app\adminapi\lists\safety\SafetyEventLists;
|
||
use app\adminapi\logic\safety\SafetyEventLogic;
|
||
use app\adminapi\validate\safety\SafetyEventValidate;
|
||
|
||
|
||
/**
|
||
* 安全事件控制器
|
||
* Class SafetyEventController
|
||
* @package app\adminapi\controller\safety
|
||
*/
|
||
class SafetyEventController extends BaseAdminController
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 获取安全事件列表
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/19 13:52
|
||
*/
|
||
public function lists()
|
||
{
|
||
return $this->dataLists(new SafetyEventLists());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 添加安全事件
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/19 13:52
|
||
*/
|
||
public function add()
|
||
{
|
||
$params = (new SafetyEventValidate())->post()->goCheck('add');
|
||
$result = SafetyEventLogic::add($params,$this->adminId);
|
||
if (true === $result) {
|
||
return $this->success('添加成功', [], 1, 1);
|
||
}
|
||
return $this->fail(SafetyEventLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑安全事件
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/19 13:52
|
||
*/
|
||
public function edit()
|
||
{
|
||
$params = (new SafetyEventValidate())->post()->goCheck('edit');
|
||
$result = SafetyEventLogic::edit($params,$this->adminId);
|
||
if (true === $result) {
|
||
return $this->success('编辑成功', [], 1, 1);
|
||
}
|
||
return $this->fail(SafetyEventLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除安全事件
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/19 13:52
|
||
*/
|
||
public function delete()
|
||
{
|
||
$params = (new SafetyEventValidate())->post()->goCheck('delete');
|
||
SafetyEventLogic::delete($params);
|
||
return $this->success('删除成功', [], 1, 1);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取安全事件详情
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2023/12/19 13:52
|
||
*/
|
||
public function detail()
|
||
{
|
||
$params = (new SafetyEventValidate())->goCheck('detail');
|
||
$result = SafetyEventLogic::detail($params);
|
||
return $this->data($result);
|
||
}
|
||
|
||
|
||
} |