修改篮球入场支付方式

This commit is contained in:
limqhz
2023-12-28 18:10:59 +08:00
parent c4e3268efa
commit 78057753fc
8 changed files with 87 additions and 51 deletions

View File

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

View File

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