|
|
|
@ -31,25 +31,25 @@ public class AndonBoardModel {
|
|
|
|
|
private String alarmName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("故障时长 单位:分钟")
|
|
|
|
|
private Long exceptionTimeCount;
|
|
|
|
|
private Long exceptionTimeCount = 0L;
|
|
|
|
|
|
|
|
|
|
@ApiParam("响应时长 单位:分钟")
|
|
|
|
|
private Long responseTimeCount;
|
|
|
|
|
private Long responseTimeCount = 0L;
|
|
|
|
|
|
|
|
|
|
@ApiParam("解决时长 单位:分钟")
|
|
|
|
|
private Long resetTimeCount;
|
|
|
|
|
private Long resetTimeCount = 0L;
|
|
|
|
|
|
|
|
|
|
@ApiParam("安灯正常处理的次数")
|
|
|
|
|
private Integer inTime;
|
|
|
|
|
private Integer inTime = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("安灯超时次数")
|
|
|
|
|
private Integer overTime;
|
|
|
|
|
private Integer overTime = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("安灯总次数")
|
|
|
|
|
private Integer totalTime;
|
|
|
|
|
private Integer totalTime = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("安灯类型百分比")
|
|
|
|
|
private float propagation;
|
|
|
|
|
private float propagation = 0;
|
|
|
|
|
|
|
|
|
|
@ApiParam("事件描述代码")
|
|
|
|
|
private String acCode;
|
|
|
|
|