huminmin
8 天以前 0fdd0bf60b7d98d21c9b5ff95bb55f0fa6495007
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;
 
}