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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.iailab.module.device.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 设备运行状态表
 *
 * @author lirm ${email}
 * @since 1.0.0 2024-05-22
 */
@Data
@TableName("t_device_run_state")
public class DeviceRunStateEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private Integer id;
    /**
     * 在线设备数量
     */
    private Integer totalCount;
    /**
     * 运行设备
     */
    private Integer runCount;
    /**
     * 停机设备
     */
    private Integer haltCount;
    /**
     * 离线设备
     */
    private Integer offlineCount;
    /**
     * 创建时间
     */
    private Date creatorDate;
}