'require|checkData', 'inspection_id' => 'require|checkInspection', 'check_type' => 'require', 'check_content' => 'require', 'must_check' => 'require|in:0,1', 'check_result' => 'require|in:0,1', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'inspection_id' => '巡视id', 'check_type' => '检查类别', 'check_content' => '检查内容', 'must_check' => '是否必检', 'check_result' => '检查结果', ]; /** * @notes 添加场景 * @return SupervisionInspectionResultValidate * @author likeadmin * @date 2024/02/27 09:23 */ public function sceneAdd() { return $this->only(['inspection_id','check_type','check_content','must_check','check_result']); } /** * @notes 编辑场景 * @return SupervisionInspectionResultValidate * @author likeadmin * @date 2024/02/27 09:23 */ public function sceneEdit() { return $this->only(['id','inspection_id','check_type','check_content','must_check','check_result']); } /** * @notes 删除场景 * @return SupervisionInspectionResultValidate * @author likeadmin * @date 2024/02/27 09:23 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return SupervisionInspectionResultValidate * @author likeadmin * @date 2024/02/27 09:23 */ public function sceneDetail() { return $this->only(['id']); } public function checkData($value): bool|string { $data = SupervisionInspectionResult::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '数据不存在'; } return true; } public function checkInspection($value): bool|string { $data = SupervisionInspection::where('id',$value)->findOrEmpty(); if($data->isEmpty()){ return '巡视信息不存在'; } return true; } }