订单列表 退款数量展示问题

数据报表 销量页 列表及导出
This commit is contained in:
2024-06-25 17:49:34 +08:00
parent 6746a6c3f3
commit 1fc2bbba34
6 changed files with 50 additions and 29 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));
}