added: 资源分类批量修改接口

This commit is contained in:
none
2023-06-12 10:22:09 +08:00
parent a35a767514
commit 82ac97dbc5
6 changed files with 84 additions and 29 deletions

View File

@@ -0,0 +1,34 @@
/*
* Copyright 2023 杭州白书科技有限公司
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package xyz.playedu.api.request.backend;
import com.fasterxml.jackson.annotation.JsonProperty;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
import java.util.List;
@Data
public class ResourceCategoryChangeRequest {
@NotNull(message = "参数为空")
private List<Integer> ids;
@NotNull(message = "请选择分类")
@JsonProperty("category_id")
private Integer categoryId;
}