Administrator
5 days ago 7ce91deef10015a897a1b00558b048e89763b837
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-售后 5-已评价")
    private Integer state;
 
}