61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 资源监测-实体类
|
|
*/
|
|
@Data
|
|
public class ResourceMonitorEntity {
|
|
|
|
@Excel(name = "序号", width = 10.0, orderNum = "0")
|
|
private String id;
|
|
|
|
/**
|
|
* 工程名称
|
|
*/
|
|
@Excel(name = "工程名称", width = 20.0, orderNum = "2")
|
|
private String proName;
|
|
|
|
/**
|
|
* 班组长
|
|
*/
|
|
@Excel(name = "班组长", width = 20.0, orderNum = "3")
|
|
private String teamLeader;
|
|
|
|
/**
|
|
* 异常类型
|
|
*/
|
|
@Excel(name = "异常类型", width = 20.0, orderNum = "4")
|
|
private String abnormalType;
|
|
|
|
/**
|
|
* 异常明细
|
|
*/
|
|
private String abnormalDetail;
|
|
|
|
/**
|
|
*告警类型
|
|
*/
|
|
@Excel(name = "告警类型", width = 20.0, orderNum = "1")
|
|
private String alarmType;
|
|
|
|
/**
|
|
* 日期
|
|
*/
|
|
@Excel(name = "日期", width = 20.0, orderNum = "5")
|
|
private String createDate;
|
|
|
|
private String createTime;
|
|
|
|
/**
|
|
* 关键字
|
|
*/
|
|
private String keyWord;
|
|
|
|
private String page;
|
|
|
|
private String limit;
|
|
}
|