1.代客下单 增加自动手动清台,新增台桌订单状态信息

This commit is contained in:
2024-09-11 14:49:22 +08:00
parent f2bfc718c3
commit 3ebec6f0c5
3 changed files with 45 additions and 13 deletions

View File

@@ -23,6 +23,8 @@ import javax.persistence.*;
import javax.validation.constraints.*;
import java.math.BigDecimal;
import java.io.Serializable;
import java.sql.Date;
import java.sql.Timestamp;
/**
* @website https://eladmin.vip
@@ -104,6 +106,23 @@ public class TbShopTable implements Serializable {
@ApiModelProperty(value = "二维码")
private String qrcode = "";
@Column(name = "`auto_clear`")
@ApiModelProperty(value = "自动清台")
private Integer autoClear=1;
@Column(name = "`use_time`")
private Date useTime;
@Column(name = "`end_time`")
private Date endTime;
@Column(name = "`product_num`")
private Integer productNum;
@Column(name = "`total_amount`")
private Integer totalAmount;
@Column(name = "`real_amount`")
private Integer realAmount;
public void copy(TbShopTable source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}