Forráskód Böngészése

page类型变更为Integer

2643616413 1 hete
szülő
commit
5d1e2b9742

+ 1 - 1
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagApiLogDetailDto.java

@@ -15,7 +15,7 @@ public class AitagApiLogDetailDto {
     private String id;
     
     @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    private Integer page = 1;
     
     @ApiModelProperty(value = "每页大小", example = "10")
     private Integer pageSize;

+ 1 - 1
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagApiLogListDto.java

@@ -16,7 +16,7 @@ public class AitagApiLogListDto {
     private String endTime;
 
     @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    private Integer page = 1;
 
     @ApiModelProperty(value = "每页大小", example = "10")
     private Integer pageSize;

+ 4 - 4
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagAppListDto.java

@@ -9,9 +9,9 @@ import io.swagger.annotations.ApiModelProperty;
 @Data
 public class AitagAppListDto {
 
-    @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    @ApiModelProperty(value = "页码")
+    private Integer page = 1;
 
-    @ApiModelProperty(value = "每页大小", example = "10")
-    private int pageSize = 10;
+    @ApiModelProperty(value = "每页大小")
+    private Integer pageSize;
 }

+ 2 - 2
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagAppQueryDto.java

@@ -15,8 +15,8 @@ public class AitagAppQueryDto {
     private String appName;
     
     @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    private Integer page = 1;
     
     @ApiModelProperty(value = "每页大小", example = "10")
-    private int pageSize = 10;
+    private Integer pageSize = 10;
 }

+ 1 - 1
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagEnabledTagCategoryListDto.java

@@ -10,7 +10,7 @@ import io.swagger.annotations.ApiModelProperty;
 public class AitagEnabledTagCategoryListDto {
     
     @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    private Integer page = 1;
     
     @ApiModelProperty(value = "每页大小", example = "10")
     private Integer pageSize;

+ 1 - 1
server/yusp-tagging-core/src/main/java/cn/com/yusys/yusp/domain/dto/AitagTagCategoryListDto.java

@@ -13,7 +13,7 @@ public class AitagTagCategoryListDto {
     private String categoryNm;
 
     @ApiModelProperty(value = "页码", example = "1")
-    private int page = 1;
+    private Integer page = 1;
 
     @ApiModelProperty(value = "每页大小")
     private Integer pageSize;