Administrator
9 days ago 8032e6933d3eda1ef701fcb1f70b2a0b2523c8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.mall.dto.activity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiActivityOrderListDto", description = "订单列表参数接收类")
public class ApiActivityOrderListDto {
 
    @ApiModelProperty(value = "一页数量", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "第几页", example = "1")
    private Integer pageNum;
 
    @ApiModelProperty(value = "订单状态", example = "订单状态 1-待支付 2-待使用 3-已使用 4-售后")
    private Integer state;
 
}