'require', 'name' => 'require', 'master' => 'require', 'status' => 'require|integer|in:0,1', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'name' => '组织名称', 'master' => '组织负责人', 'status' => '组织状态', ]; /** * @notes 添加场景 * @return OrgsValidate * @author likeadmin * @date 2023/12/09 10:55 */ public function sceneAdd() { return $this->only(['name','master','status']); } /** * @notes 编辑场景 * @return OrgsValidate * @author likeadmin * @date 2023/12/09 10:55 */ public function sceneEdit() { return $this->only(['id','name','master','status']); } /** * @notes 删除场景 * @return OrgsValidate * @author likeadmin * @date 2023/12/09 10:55 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return OrgsValidate * @author likeadmin * @date 2023/12/09 10:55 */ public function sceneDetail() { return $this->only(['id']); } }