1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.mall.dto.clothes;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "AdminClothesOrderListDto", description = "运费模板更新参数类")
| public class AdminClothesOrderListDto {
|
| private String name;
|
| private String orderNo;
| /**
| * 状态 1-待支付 2-待发货 3-待收货 4-已完成 5-已取消
| */
| private Integer status;
|
| private String payResult;
|
| private String startTime;
|
| private String endTime;
| }
|
|