package com.iailab.module.device.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
|
/**
|
* 设备健康状态表
|
*
|
* @author lirm ${email}
|
* @since 1.0.0 2024-05-22
|
*/
|
@Data
|
@Schema(name = "设备健康状态表")
|
public class DeviceHealthStateDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(name = "id")
|
private Integer id;
|
|
@Schema(name = "总设备数")
|
private Integer totalCount;
|
|
@Schema(name = "正常")
|
private Integer normal;
|
|
@Schema(name = "一般")
|
private Integer common;
|
|
@Schema(name = "较重")
|
private Integer heavy;
|
|
@Schema(name = "严重")
|
private Integer serious;
|
|
@Schema(name = "特别严重")
|
private Integer espserious;
|
|
@Schema(name = "创建时间")
|
private Date creatorDate;
|
|
|
}
|