'require|checkData', 'side_station_id' => 'require|checkSideStation', 'problem_cate' => 'require', 'problem_description' => 'require', 'problem_name' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'side_station_id' => '旁站id', 'problem_cate' => '问题分类', 'problem_description' => '问题说明', 'problem_name' => '问题名称', ]; /** * @notes 添加场景 * @return SupervisionSideStationProblemValidate * @author likeadmin * @date 2024/02/27 13:58 */ public function sceneAdd() { return $this->only(['side_station_id','problem_cate','problem_description','problem_name']); } /** * @notes 编辑场景 * @return SupervisionSideStationProblemValidate * @author likeadmin * @date 2024/02/27 13:58 */ public function sceneEdit() { return $this->only(['id','side_station_id','problem_cate','problem_description','problem_name']); } /** * @notes 删除场景 * @return SupervisionSideStationProblemValidate * @author likeadmin * @date 2024/02/27 13:58 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return SupervisionSideStationProblemValidate * @author likeadmin * @date 2024/02/27 13:58 */ public function sceneDetail() { return $this->only(['id']); } public function checkData($value): bool|string { $data = SupervisionSideStationProblem::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '数据不存在'; } return true; } public function checkInspection($value): bool|string { $data = SupervisionSideStation::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '旁站信息不存在'; } return true; } }