suyuan/app/adminapi/validate/device/DeviceValidate.php

116 lines
2.7 KiB
PHP
Raw Normal View History

2023-11-24 16:09:15 +08:00
<?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\validate\device;
use app\common\validate\BaseValidate;
/**
* Device验证器
* Class DeviceValidate
* @package app\adminapi\validate\device
*/
class DeviceValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
2023-11-28 16:00:33 +08:00
'id' => 'require',
'code' => 'require',
'name' => 'require',
'type' => 'require',
2023-11-29 15:30:59 +08:00
'monitor_type' => 'require',
2023-11-28 16:00:33 +08:00
'status' => 'require',
'is_online' => 'require',
2023-11-24 16:09:15 +08:00
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
2023-11-28 16:00:33 +08:00
'id' => 'id',
'code' => '设备编码',
'name' => '设备名称',
'type' => '设备类型',
'status' => '设备状态',
'is_online' => '是否在线',
2023-11-24 16:09:15 +08:00
];
/**
* @notes 添加场景
* @return DeviceValidate
* @author likeadmin
* @date 2023/11/24 15:30
*/
public function sceneAdd()
{
2023-12-02 10:29:08 +08:00
return $this->only(['code','name','type','status','is_online']);
2023-11-24 16:09:15 +08:00
}
/**
* @notes 编辑场景
* @return DeviceValidate
* @author likeadmin
* @date 2023/11/24 15:30
*/
public function sceneEdit()
{
2023-12-02 10:29:08 +08:00
return $this->only(['id','code','name','type','status','is_online']);
2023-11-24 16:09:15 +08:00
}
/**
* @notes 删除场景
* @return DeviceValidate
* @author likeadmin
* @date 2023/11/24 15:30
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return DeviceValidate
* @author likeadmin
* @date 2023/11/24 15:30
*/
public function sceneDetail()
{
return $this->only(['id']);
}
2023-11-29 15:30:59 +08:00
/**
* @notes 详情场景
* @return DeviceValidate
* @author likeadmin
* @date 2023/11/24 15:30
*/
public function sceneMonitorData()
{
return $this->only(['id', 'monitor_type']);
}
2023-11-24 16:09:15 +08:00
}