Merge remote-tracking branch 'origin/dev' into share-stock

This commit is contained in:
2024-06-26 14:03:18 +08:00
12 changed files with 80 additions and 112 deletions

View File

@@ -99,6 +99,10 @@ public class TbOrderDetail implements Serializable {
@ApiModelProperty(value = "打包费")
private BigDecimal packAmount;
@Transient
@ApiModelProperty(value = "退单数量")
private Integer refundNumber;
public void copy(TbOrderDetail source){
BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
}