package com.doumee.keyCabinet.http.param;
|
|
import java.math.BigDecimal;
|
|
public class CreateOrderParam {
|
//票据id
|
private String billId;
|
//票据类型 1/2 门票/套餐
|
private String billType;
|
//票据二维码
|
private String code;
|
//手环机id
|
private String devCode;
|
//会员id
|
private String memberId;
|
private String phone;
|
private String userName;
|
private BigDecimal money;
|
//业务id
|
private String busId;
|
|
public String getBillId() {
|
return billId;
|
}
|
|
public void setBillId(String billId) {
|
this.billId = billId;
|
}
|
|
public String getBillType() {
|
return billType;
|
}
|
|
public void setBillType(String billType) {
|
this.billType = billType;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getDevCode() {
|
return devCode;
|
}
|
|
public void setDevCode(String devCode) {
|
this.devCode = devCode;
|
}
|
|
public String getMemberId() {
|
return memberId;
|
}
|
|
public void setMemberId(String memberId) {
|
this.memberId = memberId;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public BigDecimal getMoney() {
|
return money;
|
}
|
|
public void setMoney(BigDecimal money) {
|
this.money = money;
|
}
|
|
public String getBusId() {
|
return busId;
|
}
|
|
public void setBusId(String busId) {
|
this.busId = busId;
|
}
|
}
|