Cui Zhi Feng
2024-09-13 129bc4549e5c23b60d2fcb8d248a77a5e40584c1
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package com.mzl.flower.dto.response.payment;
 
import com.mzl.flower.base.AbstractTransDTO;
import com.mzl.flower.base.annotation.DictTrans;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class OrderItemListDTO extends AbstractTransDTO {
    private String id;
 
    private String orderId;
 
    private Long stationId;//集货站id
    private String stationName;
 
    @ApiModelProperty(value = "商品名称")
    private String flowerName;
 
    @ApiModelProperty(value = "商品单位")
    private String flowerUnit;
 
    @ApiModelProperty(value = "商品颜色")
    private String flowerColor;
 
    @ApiModelProperty(value = "商品封面")
    private String flowerCover;
 
    @ApiModelProperty(value = "商品等级")
    @DictTrans(target = "flowerLevelStr", codeType = "FLOWER_LEVEL")
    private String flowerLevel;
    private String flowerLevelStr;
 
    @ApiModelProperty(value = "商品分类")
    private String flowerCategory;
 
    @ApiModelProperty(value = "数量")
    private Integer num;
 
    @ApiModelProperty(value = "供应商名称")
    private String supplierName;
 
    @ApiModelProperty(value = "供应商联系电话")
    private String supplierTel;
 
    @ApiModelProperty(value = "商品售价")
    private BigDecimal price;
 
    @ApiModelProperty(value = "总金额")
    private BigDecimal total;
 
    @ApiModelProperty(value = "优惠券金额/扎")
    private BigDecimal couponAmount;
 
    @ApiModelProperty(value = "优惠前售价/扎")
    private BigDecimal originalPrice;
 
    @ApiModelProperty(value = "真实成交价格/每扎")
    private BigDecimal realPrice;
 
    @ApiModelProperty(value = "补货数量")
    private Integer replaceNum;
 
    @ApiModelProperty(value = "降级数量")
    private Integer reduceNum;
 
    @ApiModelProperty(value = "缺货数量")
    private Integer lackNum;
}