xuhy
2025-06-05 add54dd13a9a63cb5d51e3285418186752b56392
ruoyi-system/src/main/java/com/ruoyi/system/export/SumGeneratorDetailClient.java
@@ -12,14 +12,14 @@
    @Excel(name = "日期")
    private String dayTime;
    @Excel(name = "实收金额")
    private BigDecimal actualAmount;
    private BigDecimal actualAmount = BigDecimal.ZERO;
    @Excel(name = "帐单数")
    private Integer orderCount;
    private Integer orderCount = 0;
    @Excel(name = "单均消费")
    private BigDecimal singleAmount;
    private BigDecimal singleAmount = BigDecimal.ZERO;
    @Excel(name = "消费人数")
    private Integer perCount;
    private Integer perCount = 0;
    @Excel(name = "人均消费")
    private BigDecimal perAmount;
    private BigDecimal perAmount = BigDecimal.ZERO;
}