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;
|
}
|