篮球通过微信支付下订单,出场10分钟结束订单,该退钱退钱
This commit is contained in:
@@ -5,7 +5,7 @@ import java.math.BigDecimal;
|
||||
|
||||
public class BasketEnterResult implements Serializable {
|
||||
/**
|
||||
* 返回的字符串,根据结果显示
|
||||
* 返回的字符串,根据结果显示 999-门禁异常 2-需要支付 0-成功 888-友情提示(十分钟内请及时进场)
|
||||
*/
|
||||
private Integer flg;
|
||||
|
||||
|
||||
@@ -19,7 +19,20 @@ public class BarcodeOrderTime {
|
||||
|
||||
private Integer status;
|
||||
|
||||
public BarcodeOrderTime(Integer id, Integer memberId, Integer venueId, Date createdTime, Date modifiedTime, Date orderStart, Date orderEnd, Integer status) {
|
||||
/**
|
||||
* 入场 paying = 0 不需要退款
|
||||
* 出场未结算 paying = 1 需要退款
|
||||
*/
|
||||
private Integer paying;
|
||||
/**
|
||||
* 0- 按次
|
||||
* 1- 按时
|
||||
*/
|
||||
private Integer payMoney;
|
||||
|
||||
private String orderSn;
|
||||
|
||||
public BarcodeOrderTime(Integer id, Integer memberId, Integer venueId, Date createdTime, Date modifiedTime, Date orderStart, Date orderEnd, Integer status ,Integer paying, Integer payMoney, String orderSn) {
|
||||
this.id = id;
|
||||
this.memberId = memberId;
|
||||
this.venueId = venueId;
|
||||
@@ -28,6 +41,9 @@ public class BarcodeOrderTime {
|
||||
this.orderStart = orderStart;
|
||||
this.orderEnd = orderEnd;
|
||||
this.status = status;
|
||||
this.paying = paying;
|
||||
this.payMoney = payMoney;
|
||||
this.orderSn = orderSn;
|
||||
}
|
||||
|
||||
public BarcodeOrderTime() {
|
||||
@@ -97,4 +113,28 @@ public class BarcodeOrderTime {
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
public Integer getPaying() {
|
||||
return paying;
|
||||
}
|
||||
|
||||
public void setPaying(Integer paying) {
|
||||
this.paying = paying;
|
||||
}
|
||||
|
||||
public Integer getPayMoney() {
|
||||
return payMoney;
|
||||
}
|
||||
|
||||
public void setPayMoney(Integer payMoney) {
|
||||
this.payMoney = payMoney;
|
||||
}
|
||||
|
||||
public String getOrderSn() {
|
||||
return orderSn;
|
||||
}
|
||||
|
||||
public void setOrderSn(String orderSn) {
|
||||
this.orderSn = orderSn;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user