release-20260330 - 修改为手机开门,不扫码。
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.sv.entity;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
public class BarcodeOrderTime {
|
||||
@@ -36,12 +37,12 @@ public class BarcodeOrderTime {
|
||||
/**
|
||||
* 退款金额 -1 代表出场还需要交钱
|
||||
*/
|
||||
private Integer payMoney;
|
||||
private BigDecimal payMoney;
|
||||
|
||||
/**
|
||||
* 总退款金额
|
||||
*/
|
||||
private Integer sumPayMoney;
|
||||
private BigDecimal sumPayMoney;
|
||||
|
||||
private String orderSn;
|
||||
|
||||
@@ -51,7 +52,7 @@ public class BarcodeOrderTime {
|
||||
private String orderAddSn;
|
||||
|
||||
public BarcodeOrderTime(Integer id, Integer memberId, Integer venueId, Date createdTime, Date modifiedTime, Date orderStart, Date orderEnd, Date lastEnter, Date lastOut, Integer status ,Integer paying,
|
||||
Integer payMoney, Integer sumPayMoney, String orderSn, String orderAddSn) {
|
||||
BigDecimal payMoney, BigDecimal sumPayMoney, String orderSn, String orderAddSn) {
|
||||
this.id = id;
|
||||
this.memberId = memberId;
|
||||
this.venueId = venueId;
|
||||
@@ -145,11 +146,11 @@ public class BarcodeOrderTime {
|
||||
this.paying = paying;
|
||||
}
|
||||
|
||||
public Integer getPayMoney() {
|
||||
public BigDecimal getPayMoney() {
|
||||
return payMoney;
|
||||
}
|
||||
|
||||
public void setPayMoney(Integer payMoney) {
|
||||
public void setPayMoney(BigDecimal payMoney) {
|
||||
this.payMoney = payMoney;
|
||||
}
|
||||
|
||||
@@ -185,11 +186,11 @@ public class BarcodeOrderTime {
|
||||
this.lastOut = lastOut;
|
||||
}
|
||||
|
||||
public Integer getSumPayMoney() {
|
||||
public BigDecimal getSumPayMoney() {
|
||||
return sumPayMoney;
|
||||
}
|
||||
|
||||
public void setSumPayMoney(Integer sumPayMoney) {
|
||||
public void setSumPayMoney(BigDecimal sumPayMoney) {
|
||||
this.sumPayMoney = sumPayMoney;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user