1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| 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;
| }
|
|