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
package com.ishop.model.vo;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 预下单商户订单Vo对象
 * @date 2023-07-06
 */
public class PreMerchantOrderVo implements Serializable {
 
    public Integer getMerId() {
        return merId;
    }
 
    public void setMerId(Integer merId) {
        this.merId = merId;
    }
 
    public String getMerName() {
        return merName;
    }
 
    public void setMerName(String merName) {
        this.merName = merName;
    }
 
    public Integer getProTotalNum() {
        return proTotalNum;
    }
 
    public void setProTotalNum(Integer proTotalNum) {
        this.proTotalNum = proTotalNum;
    }
 
    public Double getProTotalFee() {
        return proTotalFee;
    }
 
    public void setProTotalFee(Double proTotalFee) {
        this.proTotalFee = proTotalFee;
    }
 
    public Double getFreightFee() {
        return freightFee;
    }
 
    public void setFreightFee(Double freightFee) {
        this.freightFee = freightFee;
    }
 
    public Long getUserCouponId() {
        return userCouponId;
    }
 
    public void setUserCouponId(Long userCouponId) {
        this.userCouponId = userCouponId;
    }
 
    public Double getCouponFee() {
        return couponFee;
    }
 
    public void setCouponFee(Double couponFee) {
        this.couponFee = couponFee;
    }
 
    public Boolean getTakeTheirSwitch() {
        return takeTheirSwitch;
    }
 
    public void setTakeTheirSwitch(Boolean takeTheirSwitch) {
        this.takeTheirSwitch = takeTheirSwitch;
    }
 
    public Integer getShippingType() {
        return shippingType;
    }
 
    public void setShippingType(Integer shippingType) {
        this.shippingType = shippingType;
    }
 
    public String getRealName() {
        return realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public String getUserAddress() {
        return userAddress;
    }
 
    public void setUserAddress(String userAddress) {
        this.userAddress = userAddress;
    }
 
    public Integer getUseIntegral() {
        return useIntegral;
    }
 
    public void setUseIntegral(Integer useIntegral) {
        this.useIntegral = useIntegral;
    }
 
    public Double getIntegralPrice() {
        return integralPrice;
    }
 
    public void setIntegralPrice(Double integralPrice) {
        this.integralPrice = integralPrice;
    }
 
    public List<PreOrderDetailVo> getOrderInfoList() {
        return orderInfoList;
    }
 
    public void setOrderInfoList(List<PreOrderDetailVo> orderInfoList) {
        this.orderInfoList = orderInfoList;
    }
 
    //    @ApiModelProperty(value = "商户id")
    private Integer merId;
 
//    @ApiModelProperty(value = "商户名称")
    private String merName;
 
//    @ApiModelProperty(value = "商品总数")
    private Integer proTotalNum;
 
//    @ApiModelProperty(value = "商品总计金额")
    private Double proTotalFee;
 
//    @ApiModelProperty(value = "运费金额")
    private Double freightFee;
 
//    @ApiModelProperty(value = "优惠券编号(选择优惠券时有值,不选时为0")
    private Long userCouponId = 0L;
 
//    @ApiModelProperty(value = "优惠金额")
    private Double couponFee = 0d;
 
//    @ApiModelProperty(value = "自提开关:0-关闭,1-开启")
    private Boolean takeTheirSwitch;
 
//    @ApiModelProperty(value = "快递类型: 1-快递配送,2-到店自提")
    private Integer shippingType = 1;
 
//    @ApiModelProperty(value = "收货人姓名")
    private String realName;
 
//    @ApiModelProperty(value = "收货人电话")
    private String userPhone;
 
//    @ApiModelProperty(value = "收货详细地址")
    private String userAddress;
 
//    @ApiModelProperty(value = "使用积分")
    private Integer useIntegral = 0;
 
//    @ApiModelProperty(value = "积分抵扣金额")
    private Double integralPrice = 0d;
 
//    @ApiModelProperty(value = "商户订单详情数组")
    private List<PreOrderDetailVo> orderInfoList;
}