'require', 'content' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'content' => '内容', ]; /** * @notes 添加场景 * @return CompanyComplaintFeedbackValidate * @author likeadmin * @date 2023/09/23 15:08 */ public function sceneAdd() { return $this->only(['content']); } /** * @notes 编辑场景 * @return CompanyComplaintFeedbackValidate * @author likeadmin * @date 2023/09/23 15:08 */ public function sceneEdit() { return $this->only(['id','content']); } /** * @notes 删除场景 * @return CompanyComplaintFeedbackValidate * @author likeadmin * @date 2023/09/23 15:08 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return CompanyComplaintFeedbackValidate * @author likeadmin * @date 2023/09/23 15:08 */ public function sceneDetail() { return $this->only(['id']); } }