Merge branch 'ww' into test

This commit is contained in:
wangw 2024-08-23 11:36:52 +08:00
commit 12e7379cbf
2 changed files with 7 additions and 0 deletions

View File

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

View File

@ -103,6 +103,10 @@ public class TbOrderDetail implements Serializable {
@ApiModelProperty(value = "退单数量")
private Integer refundNumber;
@Column(name = "`is_vip`")
@ApiModelProperty(value = "isVip")
private Integer isVip;
public void copy(TbOrderDetail source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}