'require', 'title' => 'require', 'content' => 'require', 'type' => 'require', 'version' => 'require', 'dow_url' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'title' => '标题', 'content' => '内容', 'type' => '1ios 2安卓', 'version' => '版本', 'dow_url' => 'app链接', ]; /** * @notes 添加场景 * @return AppUpdateValidate * @author likeadmin * @date 2023/08/31 11:08 */ public function sceneAdd() { return $this->only(['title','content','type','version','dow_url']); } /** * @notes 编辑场景 * @return AppUpdateValidate * @author likeadmin * @date 2023/08/31 11:08 */ public function sceneEdit() { return $this->only(['id','title','content','type','version','dow_url']); } /** * @notes 删除场景 * @return AppUpdateValidate * @author likeadmin * @date 2023/08/31 11:08 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return AppUpdateValidate * @author likeadmin * @date 2023/08/31 11:08 */ public function sceneDetail() { return $this->only(['id']); } }