From cf329233aef9b144942a16e9d2d9988ccbda3d56 Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Tue, 23 Sep 2025 11:32:46 +0800 Subject: [PATCH] feat(ai): 新增AI通用分享接口和枚举配置 --- src/main/java/cc/mrbird/febs/ai/req/productCategory/ApiProductCategoryPageDto.java | 9 --------- 1 files changed, 0 insertions(+), 9 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/ai/req/productCategory/ApiProductCategoryPageDto.java b/src/main/java/cc/mrbird/febs/ai/req/productCategory/ApiProductCategoryPageDto.java index cffb9a9..459b92a 100644 --- a/src/main/java/cc/mrbird/febs/ai/req/productCategory/ApiProductCategoryPageDto.java +++ b/src/main/java/cc/mrbird/febs/ai/req/productCategory/ApiProductCategoryPageDto.java @@ -14,15 +14,6 @@ @ApiModel(value = "ApiProductCategoryPageDto", description = "参数") public class ApiProductCategoryPageDto { - @NotNull(message = "页码不能为空") - @ApiModelProperty(value = "页码", example = "1") - private Integer pageNow; - - @NotNull(message = "每页数量不能为空") - @ApiModelProperty(value = "每页数量", example = "10") - private Integer pageSize; - - @NotBlank(message = "父分类不能为空") @ApiModelProperty(value = "父分类ID", example = "123") private String parentId; -- Gitblit v1.9.1