修改篮球入场支付方式
This commit is contained in:
@@ -2,10 +2,7 @@ package com.sv.dto;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BarCodeResult implements Serializable {
|
||||
|
||||
private String barcode;
|
||||
|
||||
public class BasketEnterResult implements Serializable {
|
||||
/**
|
||||
* 返回的字符串,根据结果显示
|
||||
*/
|
||||
@@ -13,14 +10,6 @@ public class BarCodeResult implements Serializable {
|
||||
|
||||
private String msg;
|
||||
|
||||
public String getBarcode() {
|
||||
return barcode;
|
||||
}
|
||||
|
||||
public void setBarcode(String barcode) {
|
||||
this.barcode = barcode;
|
||||
}
|
||||
|
||||
public Integer getFlg() {
|
||||
return flg;
|
||||
}
|
||||
@@ -7,6 +7,11 @@ public class Barcode {
|
||||
|
||||
private String barcode;
|
||||
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String orderSn;
|
||||
|
||||
private Integer status;
|
||||
|
||||
private Integer memberId;
|
||||
@@ -23,9 +28,10 @@ public class Barcode {
|
||||
|
||||
private Date modifiedTime;
|
||||
|
||||
public Barcode(Integer id, String barcode, Integer status, Integer memberId, Integer venueId, Integer enter, Integer createdId, Integer modifiedId, Date createdTime, Date modifiedTime) {
|
||||
public Barcode(Integer id, String barcode, String orderSn, Integer status, Integer memberId, Integer venueId, Integer enter, Integer createdId, Integer modifiedId, Date createdTime, Date modifiedTime) {
|
||||
this.id = id;
|
||||
this.barcode = barcode;
|
||||
this.orderSn = orderSn;
|
||||
this.status = status;
|
||||
this.memberId = memberId;
|
||||
this.venueId = venueId;
|
||||
@@ -56,6 +62,14 @@ public class Barcode {
|
||||
this.barcode = barcode == null ? null : barcode.trim();
|
||||
}
|
||||
|
||||
public String getOrderSn() {
|
||||
return orderSn;
|
||||
}
|
||||
|
||||
public void setOrderSn(String orderSn) {
|
||||
this.orderSn = orderSn;
|
||||
}
|
||||
|
||||
public Integer getMemberId() {
|
||||
return memberId;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user