puzhibing
2024-03-18 0b956579c125f41f27d1e09ecae5853926ef19fe
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
72
73
74
75
76
package com.ruoyi.order.domain.vo;
 
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import com.ruoyi.system.api.domain.vo.AppMemberCouponVo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author jqs34
 * @version 1.0
 * @classname AppSureOrderGoodsVo
 * @description: TODO
 * @date 2023 2023/5/2 21:07
 */
@Data
public class AppSureOrderGoodsVo {
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodsName;
 
    @ApiModelProperty(value = "商品简介")
    private String goodsIntroduction;
 
    @ApiModelProperty(value = "商品标签")
    private String goodsTag;
 
    @ApiModelProperty(value = "商品类型1周期2服务3体验4单品")
    private Integer goodsType;
 
    @ApiModelProperty(value = "商品图片")
    private String goodsPicture;
 
    @ApiModelProperty(value = "购买数量")
    private Integer buyNum;
 
    @ApiModelProperty(value = "优惠券id")
    private Long memberCouponId;
 
    @ApiModelProperty(value = "商品售价")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal goodsPrice;
 
    @ApiModelProperty(value = "活动售价")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal activityPrice;
 
    @ApiModelProperty(value = "商品总价")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal goodsTotalPrice;
 
    @ApiModelProperty(value = "商品订金")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal goodsDeposit;
 
    @ApiModelProperty(value = "是否计算优惠券0否1是")
    private Integer useCoupon;
 
    @ApiModelProperty(value = "优惠券抵扣")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal couponDiscount;
 
    @ApiModelProperty(value = "商品实际价格")
    @JsonSerialize(using = ToStringSerializer.class)
    private BigDecimal goodsRealPrice;
 
    @ApiModelProperty(value = "优惠券列表")
    private List<AppMemberCouponVo> appMemberCouponVoList;
 
}