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
23
24
25
26
package cn.iocoder.yudao.module.statistics.service.trade.bo;
 
import lombok.Data;
 
/**
 * 订单统计 Response BO
 *
 * @author owen
 */
@Data
public class TradeOrderSummaryRespBO {
 
    /**
     * 创建订单数
     */
    private Integer orderCreateCount;
    /**
     * 支付订单商品数
     */
    private Integer orderPayCount;
    /**
     * 总支付金额,单位:分
     */
    private Integer orderPayPrice;
 
}