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 orderMeals; }