2026-08-06 09f01778d5a034e2af50ae05da8908f7b6a871c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.iocoder.yudao.module.statistics.service.trade.bo;
 
import lombok.Data;
 
/**
 * 售后统计 Response DTO
 *
 * @author owen
 */
@Data
public class AfterSaleSummaryRespBO {
 
    /**
     * 退款订单数
     */
    private Integer afterSaleCount;
    /**
     * 总退款金额,单位:分
     */
    private Integer afterSaleRefundPrice;
 
}