Helius
2021-06-15 4fc2e0257cf4f6ff91fc098d4438a8faf6a3c6a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.coin.parameter.dto;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "GbzListDto", description = "订单列表接口参数类")
public class GbzListDto {
 
    @NotNull(message = "参数错误")
    @ApiModelProperty(value = "当前页", example = "1")
    private Integer pageNum;
 
    @NotNull(message = "参数错误")
    @ApiModelProperty(value = "条数", example = "10")
    private Integer pageSize;
}