xuhy
2025-04-24 12dc412a07b9d4b2280cddd9131db73d3dc4ebd2
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;
}