1.代客下单 添加购物车新增单品备注

This commit is contained in:
2024-09-12 14:38:45 +08:00
parent 5c2b995d1f
commit 0f9c370118
5 changed files with 22 additions and 10 deletions

View File

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

View File

@@ -113,6 +113,9 @@ public class TbOrderDetail implements Serializable {
@ApiModelProperty(value = "place_num")
private Integer placeNum;
@Column(name = "`note`")
private String note;
public void copy(TbOrderDetail source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}