mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 10:18:42 +08:00 
			
		
		
		
	| @@ -3,7 +3,7 @@ package cn.iocoder.yudao.framework.common.enums; | ||||
| /** | ||||
|  * Web 过滤器顺序的枚举类,保证过滤器按照符合我们的预期 | ||||
|  * | ||||
|  *  考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 util 包下 | ||||
|  *  考虑到每个 starter 都需要用到该工具类,所以放到 common 模块下的 enums 包下 | ||||
|  * | ||||
|  * @author 芋道源码 | ||||
|  */ | ||||
|   | ||||
| @@ -23,8 +23,8 @@ public class PageParam implements Serializable { | ||||
|  | ||||
|     @ApiModelProperty(value = "每页条数,最大值为 100", required = true, example = "10") | ||||
|     @NotNull(message = "每页条数不能为空") | ||||
|     @Min(value = 1, message = "页码最小值为 1") | ||||
|     @Max(value = 100, message = "页码最大值为 100") | ||||
|     @Min(value = 1, message = "每页条数最小值为 1") | ||||
|     @Max(value = 100, message = "每页条数最大值为 100") | ||||
|     private Integer pageSize = PAGE_SIZE; | ||||
|  | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 芋道源码
					芋道源码