doum
7 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
package com.doumee.keyCabinet.http.param;
 
 
import java.math.BigDecimal;
 
//订单支付")
public class OrderPayParam {
    //会员id")
    private String memberId;
    //订单id")
    private String orderId;
    //支付方式:01-会员卡,02-现金,03-微信,04-支付宝,10-团购券支付")
    private String payMethod;
    //是否优先扣除赠送金额")
    private Boolean giveMoney;
    //支付密码")
    private String payPwd;
    //优惠券id")
    private String couponsId;
    //是否改价(0-否1-是)")
    private String change="0";
    //修改后价格")
    private BigDecimal changePrice;
    //备注")
    private String note;
    //优惠政策id")
    private String policyId;
    //是否积分抵扣(0-否1-是)")
    private String integralUse="0";
    //套餐会员表主键id")
    private String mealsMemberId;
    //团购券码")
    private String couponCode;
    //核销数量")
    private Long num;
    //套餐id")
    private String dealId;
    //团购id")
    private String dealGroupId;
 
    public String getMemberId() {
        return memberId;
    }
 
    public void setMemberId(String memberId) {
        this.memberId = memberId;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public String getPayMethod() {
        return payMethod;
    }
 
    public void setPayMethod(String payMethod) {
        this.payMethod = payMethod;
    }
 
    public Boolean getGiveMoney() {
        return giveMoney;
    }
 
    public void setGiveMoney(Boolean giveMoney) {
        this.giveMoney = giveMoney;
    }
 
    public String getPayPwd() {
        return payPwd;
    }
 
    public void setPayPwd(String payPwd) {
        this.payPwd = payPwd;
    }
 
    public String getCouponsId() {
        return couponsId;
    }
 
    public void setCouponsId(String couponsId) {
        this.couponsId = couponsId;
    }
 
    public String getChange() {
        return change;
    }
 
    public void setChange(String change) {
        this.change = change;
    }
 
    public BigDecimal getChangePrice() {
        return changePrice;
    }
 
    public void setChangePrice(BigDecimal changePrice) {
        this.changePrice = changePrice;
    }
 
    public String getNote() {
        return note;
    }
 
    public void setNote(String note) {
        this.note = note;
    }
 
    public String getPolicyId() {
        return policyId;
    }
 
    public void setPolicyId(String policyId) {
        this.policyId = policyId;
    }
 
    public String getIntegralUse() {
        return integralUse;
    }
 
    public void setIntegralUse(String integralUse) {
        this.integralUse = integralUse;
    }
 
    public String getMealsMemberId() {
        return mealsMemberId;
    }
 
    public void setMealsMemberId(String mealsMemberId) {
        this.mealsMemberId = mealsMemberId;
    }
 
    public String getCouponCode() {
        return couponCode;
    }
 
    public void setCouponCode(String couponCode) {
        this.couponCode = couponCode;
    }
 
    public Long getNum() {
        return num;
    }
 
    public void setNum(Long num) {
        this.num = num;
    }
 
    public String getDealId() {
        return dealId;
    }
 
    public void setDealId(String dealId) {
        this.dealId = dealId;
    }
 
    public String getDealGroupId() {
        return dealGroupId;
    }
 
    public void setDealGroupId(String dealGroupId) {
        this.dealGroupId = dealGroupId;
    }
}