'require', 'type' => 'require|integer|in:1,2,3', 'type_user' => 'require|checkTypeUser', 'works' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'type' => '类型', 'type_user' => '接受人员ID', 'works' => '汇报工作内容', 'annex' => '附件' ]; /** * @notes 添加场景 * @return OaWorkValidate * @author likeadmin * @date 2024/05/23 15:56 */ public function sceneAdd() { return $this->only(['type','type_user','works','plans','remark','annex']); } /** * @notes 编辑场景 * @return OaWorkValidate * @author likeadmin * @date 2024/05/23 15:56 */ public function sceneEdit() { return $this->only(['id','type','works','plans','remark','annex'])->remove('type_user',true); } /** * @notes 删除场景 * @return OaWorkValidate * @author likeadmin * @date 2024/05/23 15:56 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return OaWorkValidate * @author likeadmin * @date 2024/05/23 15:56 */ public function sceneDetail() { return $this->only(['id']); } public function checkTypeUser($value): bool|string { if(empty($value) || empty(explode(',',$value))){ return '接受人员数据格式错误'; } return true; } }