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_health_state")
|
public class DeviceHealthStateEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
private Integer id;
|
/**
|
* 总设备数
|
*/
|
private Integer totalCount;
|
/**
|
* 正常
|
*/
|
private Integer normal;
|
/**
|
* 一般
|
*/
|
private Integer common;
|
/**
|
* 较重
|
*/
|
private Integer heavy;
|
/**
|
* 严重
|
*/
|
private Integer serious;
|
/**
|
* 特别严重
|
*/
|
private Integer espserious;
|
/**
|
* 创建时间
|
*/
|
private Date creatorDate;
|
}
|