1.代客下单 添加购物车新增单品备注
This commit is contained in:
@@ -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));
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user