houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
//package com.iailab.module.device.excel;
//
//import cn.afterturn.easypoi.excel.annotation.Excel;
//import lombok.Data;
//
//import java.util.Date;
//
///**
// * 设备运行状态表
// *
// * @author lirm ${email}
// * @since 1.0.0 2024-05-22
// */
//@Data
//public class DeviceRunStateExcel {
//    @Excel(name = "id")
//    private String id;
//    @Excel(name = "在线设备数量")
//    private Integer totalCount;
//    @Excel(name = "运行设备")
//    private Integer runCount;
//    @Excel(name = "停机设备")
//    private Integer haltCount;
//    @Excel(name = "离线设备")
//    private Integer offlineCount;
//    @Excel(name = "创建时间")
//    private Date creatorDate;
//
//}