|
|
|
@ -225,6 +225,37 @@ public class AndonManageRecord extends BaseBean {
|
|
|
|
|
@ApiParam(value = "停机具体原因")
|
|
|
|
|
private String haltDesc;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEND_FLAG")
|
|
|
|
|
@ApiParam(value = "发送标志")
|
|
|
|
|
private String sendFlag;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 处理类型:10=标准处理,20=自处理
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "DISPOSAL_TYPE")
|
|
|
|
|
@ApiParam(value = "处理类型")
|
|
|
|
|
private String disposalType;
|
|
|
|
|
|
|
|
|
|
@Column(name = "ALARM_DETAIL_CODE")
|
|
|
|
|
@ApiParam(value = "安灯子类型代码")
|
|
|
|
|
private String alarmDetailCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "EPM_CODE")
|
|
|
|
|
@ApiParam(value = "事件现象代码")
|
|
|
|
|
private String epmCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "EPM_NAME_RDD")
|
|
|
|
|
@ApiParam(value = "事件现象描述")
|
|
|
|
|
private String epmNameRdd;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IMPORTANCE_CODE")
|
|
|
|
|
@ApiParam(value = "重要等级代码")
|
|
|
|
|
private String importanceCode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IMPORTANCE_NAME_RDD")
|
|
|
|
|
@ApiParam(value = "重要等级名称")
|
|
|
|
|
private String importanceNameRdd;
|
|
|
|
|
|
|
|
|
|
// 是否转呼
|
|
|
|
|
public Integer getIsShiftCall() {
|
|
|
|
|
return this.isShiftCall == null ? 0 : this.isShiftCall;
|
|
|
|
|