订单管理 会员商品 名称 变黄

This commit is contained in:
wangw 2024-08-23 11:34:37 +08:00
parent 16f07f2f40
commit a2e16bf05d
2 changed files with 7 additions and 0 deletions

View File

@ -59,4 +59,7 @@ public class TbOrderDetailDto implements Serializable {
/** 打包费 */ /** 打包费 */
private BigDecimal packAmount; private BigDecimal packAmount;
private Integer isVip;
} }

View File

@ -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));
} }