90 lines
1.6 KiB
Plaintext
90 lines
1.6 KiB
Plaintext
package com.sercurityControl.proteam.dutyTask.domain;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 球机运行状态详情-实体类
|
|
*/
|
|
@Data
|
|
public class BallStatusDetailEntity {
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
@Excel(name = "序号", width = 10.0, orderNum = "0")
|
|
private String id;
|
|
|
|
/**
|
|
* 关键字
|
|
*/
|
|
private String keyWord;
|
|
|
|
/**
|
|
* 建管单位id
|
|
*/
|
|
private String orgId;
|
|
|
|
/**
|
|
* 建管单位名称
|
|
*/
|
|
@Excel(name = "建管单位", width = 20.0, orderNum = "1")
|
|
private String orgName;
|
|
|
|
/**
|
|
* 作业票号
|
|
*/
|
|
@Excel(name = "作业票号", width = 20.0, orderNum = "2")
|
|
private String ticketNo;
|
|
|
|
/**
|
|
* 工程名称
|
|
*/
|
|
@Excel(name = "工程名称", width = 20.0, orderNum = "3")
|
|
private String proName;
|
|
|
|
/**
|
|
* 风险等级
|
|
*/
|
|
@Excel(name = "风险等级", width = 20.0, orderNum = "4")
|
|
private String riskLevel;
|
|
|
|
/**
|
|
* 班组负责人
|
|
*/
|
|
@Excel(name = "班组负责人", width = 20.0, orderNum = "5")
|
|
private String workManager;
|
|
|
|
@Excel(name = "球机状态", width = 20.0, orderNum = "6")
|
|
private String ballStatus;
|
|
|
|
/**
|
|
* 班组负责人手机号
|
|
*/
|
|
private String workManagerPhone;
|
|
|
|
/**
|
|
* 开工时长
|
|
*/
|
|
private String kgTime;
|
|
|
|
/**
|
|
* 球机在线时长
|
|
*/
|
|
private String ballOnlineTime;
|
|
|
|
|
|
private String limit;
|
|
|
|
private String page;
|
|
|
|
private List<String> riskLevelList;
|
|
|
|
/**
|
|
*类型
|
|
*/
|
|
private String type;
|
|
}
|