shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package com.ishop.model.vo;
 
import java.util.List;
 
public class PreOrderVo {
 
    public Double getProTotalFee() {
        return proTotalFee;
    }
 
    public void setProTotalFee(Double proTotalFee) {
        this.proTotalFee = proTotalFee;
    }
 
    public Integer getOrderProNum() {
        return orderProNum;
    }
 
    public void setOrderProNum(Integer orderProNum) {
        this.orderProNum = orderProNum;
    }
 
    public Double getFreightFee() {
        return freightFee;
    }
 
    public void setFreightFee(Double freightFee) {
        this.freightFee = freightFee;
    }
 
    public Double getCouponFee() {
        return couponFee;
    }
 
    public void setCouponFee(Double couponFee) {
        this.couponFee = couponFee;
    }
 
    public Double getPayFee() {
        return payFee;
    }
 
    public void setPayFee(Double payFee) {
        this.payFee = payFee;
    }
 
    public Integer getAddressId() {
        return addressId;
    }
 
    public void setAddressId(Integer addressId) {
        this.addressId = addressId;
    }
 
    public Integer getUserIntegral() {
        return userIntegral;
    }
 
    public void setUserIntegral(Integer userIntegral) {
        this.userIntegral = userIntegral;
    }
 
    public Double getUserBalance() {
        return userBalance;
    }
 
    public void setUserBalance(Double userBalance) {
        this.userBalance = userBalance;
    }
 
    public List<PreMerchantOrderVo> getMerchantOrderVoList() {
        return merchantOrderVoList;
    }
 
    public void setMerchantOrderVoList(List<PreMerchantOrderVo> merchantOrderVoList) {
        this.merchantOrderVoList = merchantOrderVoList;
    }
 
    public List<Long> getCartIdList() {
        return cartIdList;
    }
 
    public void setCartIdList(List<Long> cartIdList) {
        this.cartIdList = cartIdList;
    }
 
    public Boolean getIntegralDeductionSwitch() {
        return integralDeductionSwitch;
    }
 
    public void setIntegralDeductionSwitch(Boolean integralDeductionSwitch) {
        this.integralDeductionSwitch = integralDeductionSwitch;
    }
 
    public Boolean getIsUseIntegral() {
        return isUseIntegral;
    }
 
    public void setIsUseIntegral(Boolean useIntegral) {
        isUseIntegral = useIntegral;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    /**
     * 是否:虚拟商品,无需发货,直接完成订单?
     * @return
     * @date 2023-09-09
     */
    public Boolean getAutoShippingDone() {
        return autoShippingDone;
    }
 
    public void setAutoShippingDone(Boolean autoShippingDone) {
        this.autoShippingDone = autoShippingDone;
    }
 
    private Boolean autoShippingDone = false;
    //    @ApiModelProperty(value = "商品总计金额")
    private Double proTotalFee = 0d;
 
//    @ApiModelProperty(value = "订单商品数量")
    private Integer orderProNum;
 
//    @ApiModelProperty(value = "运费金额")
    private Double freightFee;
 
//    @ApiModelProperty(value = "优惠金额")
    private Double couponFee = 0d;
 
//    @ApiModelProperty(value = "实际支付金额")
    private Double payFee;
 
//    @ApiModelProperty(value = "地址id")
    private Integer addressId;
 
//    @ApiModelProperty(value = "用户剩余积分")
    private Integer userIntegral;
 
//    @ApiModelProperty(value = "用户可用余额")
    private Double userBalance;
 
//    @ApiModelProperty(value = "商户订单数组")
    private List<PreMerchantOrderVo> merchantOrderVoList;
 
//    @ApiModelProperty(value = "秒杀商品Id")
//    private Integer seckillId = 0;
//
//    @ApiModelProperty(value = "砍价商品Id")
//    private Integer bargainId = 0;
//
//    @ApiModelProperty(value = "用户砍价活动id")
//    private Integer bargainUserId;
//
//    @ApiModelProperty(value = "拼团商品Id")
//    private Integer combinationId = 0;
//
//    @ApiModelProperty(value = "拼团团长Id")
//    private Integer pinkId = 0;
 
//    @ApiModelProperty(value = "购物车编号列表")
    private List<Long> cartIdList;
 
//    @ApiModelProperty(value = "积分抵扣开关")
    private Boolean integralDeductionSwitch;
 
//    @ApiModelProperty(value = "用户是否使用积分抵扣")
    private Boolean isUseIntegral;
 
//    @ApiModelProperty(value = "订单类型:0-普通订单,1-视频号订单,2-秒杀订单")
    private Integer type = 0;
}