'require|checkData', 'title' => 'require', 'type' => 'require|integer|in:0,1,2,3,4', 'start_time' => 'require|dateFormat:Y-m-d H:i', 'end_time' => 'require|dateFormat:Y-m-d H:i', 'remind_type' => 'require|integer|in:0,1,2,3,4,5,6', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'title' => '工作安排主题', 'type' => '日程优先级', 'start_time' => '开始时间', 'end_time' => '结束时间', 'remind_type' => '提醒类型', ]; /** * @notes 添加场景 * @return OaPlanValidate * @author likeadmin * @date 2024/05/23 11:53 */ public function sceneAdd() { return $this->only(['title','type','start_time','end_time','remind_type']); } /** * @notes 编辑场景 * @return OaPlanValidate * @author likeadmin * @date 2024/05/23 11:53 */ public function sceneEdit() { return $this->only(['id','title','type','start_time','end_time','remind_type']); } /** * @notes 删除场景 * @return OaPlanValidate * @author likeadmin * @date 2024/05/23 11:53 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return OaPlanValidate * @author likeadmin * @date 2024/05/23 11:53 */ public function sceneDetail() { return $this->only(['id']); } public function sceneCalendar() { return $this->only(['start_time','end_time']); } public function checkData($value): bool|string { $data = OaPlan::field('id')->where('id',$value)->findOrEmpty(); return $data->isEmpty() ? '数据不存在' : true; } }