2026-06-26 20b96473f2520590a0dca6b775b81e3ea06a77a0
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;
 
}