package com.gk.hotwork.doublePrevention.entity.dto;
|
|
|
public class CheckResultReportDO {
|
/**
|
* id
|
*/
|
private Long id;
|
/**
|
* 管控措施Id
|
*/
|
private Long controlMeasureId;
|
/**
|
* 处理结果, 1-正常;2-不正常
|
*/
|
private Byte checkResult;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getControlMeasureId() {
|
return controlMeasureId;
|
}
|
|
public void setControlMeasureId(Long controlMeasureId) {
|
this.controlMeasureId = controlMeasureId;
|
}
|
|
public Byte getCheckResult() {
|
return checkResult;
|
}
|
|
public void setCheckResult(Byte checkResult) {
|
this.checkResult = checkResult;
|
}
|
}
|