订单信息表修改
This commit is contained in:
parent
d1fd229bf4
commit
bb3fcfa769
|
|
@ -105,4 +105,6 @@ public class TbCashierCartDto implements Serializable {
|
||||||
private String isGift;
|
private String isGift;
|
||||||
|
|
||||||
private Long pendingAt;
|
private Long pendingAt;
|
||||||
|
|
||||||
|
private String uuid;
|
||||||
}
|
}
|
||||||
|
|
@ -156,4 +156,6 @@ public class TbOrderInfoDto implements Serializable {
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
private List<TbOrderDetail> detailList;
|
private List<TbOrderDetail> detailList;
|
||||||
|
|
||||||
|
private String payRemark;
|
||||||
}
|
}
|
||||||
|
|
@ -150,6 +150,10 @@ public class TbCashierCart implements Serializable {
|
||||||
@ApiModelProperty(value = "pendingAt")
|
@ApiModelProperty(value = "pendingAt")
|
||||||
private Long pendingAt;
|
private Long pendingAt;
|
||||||
|
|
||||||
|
@Column(name = "`uuid`")
|
||||||
|
@ApiModelProperty(value = "uuid")
|
||||||
|
private String uuid;
|
||||||
|
|
||||||
public void copy(TbCashierCart source){
|
public void copy(TbCashierCart source){
|
||||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,7 @@ public class TbOrderInfo implements Serializable {
|
||||||
private BigDecimal userCouponAmount;
|
private BigDecimal userCouponAmount;
|
||||||
|
|
||||||
@Column(name = "`master_id`")
|
@Column(name = "`master_id`")
|
||||||
@ApiModelProperty(value = "如果为退单时,主单号")
|
@ApiModelProperty(value = "取餐码")
|
||||||
private String masterId;
|
private String masterId;
|
||||||
|
|
||||||
@Column(name = "`refund_able`")
|
@Column(name = "`refund_able`")
|
||||||
|
|
@ -208,6 +208,10 @@ public class TbOrderInfo implements Serializable {
|
||||||
@ApiModelProperty(value = "remark")
|
@ApiModelProperty(value = "remark")
|
||||||
private String remark;
|
private String remark;
|
||||||
|
|
||||||
|
@Column(name = "`pay_remark`")
|
||||||
|
@ApiModelProperty(value = "payRemark")
|
||||||
|
private String payRemark;
|
||||||
|
|
||||||
public void copy(TbOrderInfo source){
|
public void copy(TbOrderInfo source){
|
||||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue