代客下单支持外带用餐模式

This commit is contained in:
2024-09-18 17:29:10 +08:00
parent e9fa13fdd8
commit 1b3158930f
18 changed files with 188 additions and 126 deletions

View File

@@ -159,6 +159,8 @@ public class TbCashierCart implements Serializable {
private Integer placeNum;
@Column(name = "`note`")
private String note;
@Column(name = "`use_type`")
private String useType;
public void copy(TbCashierCart source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));

View File

@@ -119,6 +119,9 @@ public class TbOrderDetail implements Serializable {
@Column(name = "`cart_id`")
private Integer cartId;
@Column(name = "`use_type`")
private String useType;
public void copy(TbOrderDetail source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}