2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package cn.iocoder.yudao.module.statistics.controller.admin.trade.vo;
 
import cn.iocoder.yudao.framework.excel.core.convert.MoneyConvert;
import cn.idev.excel.annotation.ExcelProperty;
import cn.idev.excel.annotation.format.DateTimeFormat;
import lombok.Data;
 
import java.time.LocalDate;
 
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY;
 
/**
 * 交易状况统计 Excel VO
 *
 * @author owen
 */
@Data
public class TradeTrendSummaryExcelVO {
 
    @ExcelProperty(value = "日期")
    @DateTimeFormat(FORMAT_YEAR_MONTH_DAY)
    private LocalDate date;
 
    @ExcelProperty(value = "营业额", converter = MoneyConvert.class)
    private Integer turnoverPrice;
 
    @ExcelProperty(value = "商品支付金额", converter = MoneyConvert.class)
    private Integer orderPayPrice;
 
    @ExcelProperty(value = "充值金额", converter = MoneyConvert.class)
    private Integer rechargePrice;
 
    @ExcelProperty(value = "支出金额", converter = MoneyConvert.class)
    private Integer expensePrice;
 
    @ExcelProperty(value = "余额支付金额", converter = MoneyConvert.class)
    private Integer walletPayPrice;
 
    @ExcelProperty(value = "支付佣金金额", converter = MoneyConvert.class)
    private Integer brokerageSettlementPrice;
 
    @ExcelProperty(value = "商品退款金额", converter = MoneyConvert.class)
    private Integer afterSaleRefundPrice;
}