Administrator
2025-07-18 4888ef96061e19769427bf52b0a644da7910331e
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
27
28
29
30
31
32
33
34
package cc.mrbird.febs.mall.vo.clothes;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "ApiClothesOrderListVo", description = "参数")
public class ApiClothesOrderListVo {
 
    @ApiModelProperty(value = "订单ID")
    private Long id;
 
    @ApiModelProperty(value = "总价")
    private BigDecimal amount;
 
    @ApiModelProperty(value = "实付款")
    private BigDecimal realAmount;
 
    @ApiModelProperty(value = "类型名称")
    private String typeName;
 
    @ApiModelProperty(value = "类型图片")
    private String typeImage;
 
    @ApiModelProperty(value = "数量")
    private Integer goodsCnt;
 
    @ApiModelProperty(value = "订单状态", example = "状态 1-待支付 2-待发货 3-待收货 4-已完成 5-已取消")
    private Integer status;
 
}