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;
|
}
|
}
|