'require', 'custom_id' => 'require', ]; /** * 参数描述 * @var string[] */ protected $field = [ 'id' => 'id', 'custom_id' => 'custom_id', ]; /** * @notes 添加场景 * @return CustomContactsValidate * @author likeadmin * @date 2023/11/11 22:56 */ public function sceneAdd() { return $this->only(['custom_id']); } /** * @notes 编辑场景 * @return CustomContactsValidate * @author likeadmin * @date 2023/11/11 22:56 */ public function sceneEdit() { return $this->only(['id','custom_id']); } /** * @notes 删除场景 * @return CustomContactsValidate * @author likeadmin * @date 2023/11/11 22:56 */ public function sceneDelete() { return $this->only(['id']); } /** * @notes 详情场景 * @return CustomContactsValidate * @author likeadmin * @date 2023/11/11 22:56 */ public function sceneDetail() { return $this->only(['id']); } }