110 lines
2.8 KiB
PHP
110 lines
2.8 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\validate\device;
|
|||
|
|
|||
|
|
|||
|
use app\common\validate\BaseValidate;
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* SoilMonitor验证器
|
|||
|
* Class SoilMonitorValidate
|
|||
|
* @package app\adminapi\validate\device
|
|||
|
*/
|
|||
|
class SoilMonitorValidate extends BaseValidate
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* 设置校验规则
|
|||
|
* @var string[]
|
|||
|
*/
|
|||
|
protected $rule = [
|
|||
|
'id' => 'require',
|
|||
|
'device_id' => 'require',
|
|||
|
'temperature' => 'require',
|
|||
|
'moisture' => 'require',
|
|||
|
'conductivity' => 'require',
|
|||
|
'ph' => 'require',
|
|||
|
'n_content' => 'require',
|
|||
|
'p_content' => 'require',
|
|||
|
'k_content' => 'require',
|
|||
|
];
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* 参数描述
|
|||
|
* @var string[]
|
|||
|
*/
|
|||
|
protected $field = [
|
|||
|
'id' => 'id',
|
|||
|
'device_id' => '设备ID',
|
|||
|
'temperature' => '土壤温度',
|
|||
|
'moisture' => '土壤湿度',
|
|||
|
'conductivity' => '电导率',
|
|||
|
'ph' => '土壤酸碱度',
|
|||
|
'n_content' => '氮含量',
|
|||
|
'p_content' => '磷含量',
|
|||
|
'k_content' => '钾含量',
|
|||
|
];
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 添加场景
|
|||
|
* @return SoilMonitorValidate
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/11/24 17:02
|
|||
|
*/
|
|||
|
public function sceneAdd()
|
|||
|
{
|
|||
|
return $this->only(['device_id','temperature','moisture','conductivity','ph','n_content','p_content','k_content']);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 编辑场景
|
|||
|
* @return SoilMonitorValidate
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/11/24 17:02
|
|||
|
*/
|
|||
|
public function sceneEdit()
|
|||
|
{
|
|||
|
return $this->only(['id','device_id','temperature','moisture','conductivity','ph','n_content','p_content','k_content']);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 删除场景
|
|||
|
* @return SoilMonitorValidate
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/11/24 17:02
|
|||
|
*/
|
|||
|
public function sceneDelete()
|
|||
|
{
|
|||
|
return $this->only(['id']);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 详情场景
|
|||
|
* @return SoilMonitorValidate
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/11/24 17:02
|
|||
|
*/
|
|||
|
public function sceneDetail()
|
|||
|
{
|
|||
|
return $this->only(['id']);
|
|||
|
}
|
|||
|
|
|||
|
}
|