订单管理 会员商品 名称 变黄
This commit is contained in:
parent
16f07f2f40
commit
a2e16bf05d
|
|
@ -59,4 +59,7 @@ public class TbOrderDetailDto implements Serializable {
|
||||||
|
|
||||||
/** 打包费 */
|
/** 打包费 */
|
||||||
private BigDecimal packAmount;
|
private BigDecimal packAmount;
|
||||||
|
|
||||||
|
private Integer isVip;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -103,6 +103,10 @@ public class TbOrderDetail implements Serializable {
|
||||||
@ApiModelProperty(value = "退单数量")
|
@ApiModelProperty(value = "退单数量")
|
||||||
private Integer refundNumber;
|
private Integer refundNumber;
|
||||||
|
|
||||||
|
@Column(name = "`is_vip`")
|
||||||
|
@ApiModelProperty(value = "isVip")
|
||||||
|
private Integer isVip;
|
||||||
|
|
||||||
public void copy(TbOrderDetail source){
|
public void copy(TbOrderDetail source){
|
||||||
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue