Helius
2021-05-12 e41f83ce93b31c3d2ed416a8b45dc493177e6dd8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.xcong.excoin.modules.yunding.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "YdOrderListDto", description = "订单列表入参类")
public class YdOrderListDto {
 
    @NotNull
    @Min(1)
    @ApiModelProperty(value = "第几页", example = "1")
    private int pageNum;
 
    @NotNull
    @ApiModelProperty(value = "每页数量", example = "10")
    private int pageSize;
 
    @ApiModelProperty(value = "订单状态1:待生效 2:生效中 3:已终止", example = "2")
    private Integer state;
 
}