package com.ycl.platform.domain.excel; import annotation.Excel; import lombok.Data; @Data public class VideoTotalExp { /** 日期 */ @Excel(name = "日期") private String date; /** 星期 */ @Excel(name = "星期") private String week; /** 总量 */ @Excel(name = "总量") private Integer total; /** 在线 */ @Excel(name = "在线") private Integer online; /** 离线 */ @Excel(name = "离线") private Integer offline; /** 无存储 */ @Excel(name = "无存储") private Integer noStore; /** 部分存储 */ @Excel(name = "部分存储") private Integer partStore; }