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; }