xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
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
package com.ruoyi.system.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import cn.afterturn.easypoi.excel.annotation.ExcelCollection;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class SaleGeneratorClient {
    @Excel(name = "生成时间")
    private String generatorTime;
    @Excel(name = "实收统计")
    private BigDecimal allMoney;
    @Excel(name = "订单金额实收统计")
    private BigDecimal allOrderMoney;
    @Excel(name = "微信支付")
    private BigDecimal weiXinPayAmount;
    @Excel(name = "支付宝支付")
    private BigDecimal aliPayAmount;
    @Excel(name = "银行卡支付")
    private BigDecimal cardPayAmount;
    @Excel(name = "现金支付")
    private BigDecimal moneyPayAmount;
    @Excel(name = "其他支付")
    private BigDecimal otherPayAmount;
    private List<TOrderSaleAndGoodsExportExcelTemplate> orderMeals;
 
}