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 SumGeneratorDetailClient { @Excel(name = "日期") private String dayTime; @Excel(name = "实收金额") private BigDecimal actualAmount = BigDecimal.ZERO; @Excel(name = "帐单数") private Integer orderCount = 0; @Excel(name = "单均消费") private BigDecimal singleAmount = BigDecimal.ZERO; @Excel(name = "消费人数") private Integer perCount = 0; @Excel(name = "人均消费") private BigDecimal perAmount = BigDecimal.ZERO; }