Administrator
2026-02-12 ac9f19fc498970d7ac71c0e874c520c0e1d8ee32
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;
}