package com.panzhihua.common.model.vos.community.reserve; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; import java.math.BigDecimal; /** * 预约统计汇总导出返回对象 */ @Data public class ComActReserveMakeRightExcelAdminVO { @ExcelProperty(value = "日期" ,index = 0) private String reserveTime; @ExcelProperty(value = "预约主题" ,index = 1) private String title; @ExcelProperty(value = "所占百分比" ,index = 2) private BigDecimal tag; @ExcelProperty(value = "预约量" ,index = 3) private Integer count; @ExcelProperty(value = "合计" ,index = 4) private Integer allCount; }