MCPcopy Create free account
hub / github.com/PlexPt/rocket-pt / PageParam

Class PageParam

src/main/java/com/rocketpt/server/common/base/PageParam.java:11–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10
11@Getter
12@Setter
13@ToString
14public class PageParam {
15 @NotNull(message = "page参数不能为空")
16 @Min(value = 1L, message = "page参数必须是数字或数值小于限制")
17 protected Integer page;
18
19 @NotNull(message = "参数不能为空")
20 @Min(value = 1L, message = "参数必须是数字或数值小于限制")
21 @Max(value = 200L, message = "参数必须是数字或数值大于限制")
22 protected Integer size;
23
24
25}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected