package com.gk.hotwork.doublePrevention.repository.param;
|
|
public class PreventCheckResultParams {
|
/**
|
* 主键id
|
* */
|
private Long id;
|
/**
|
* 管控措施Id
|
* */
|
private Long controlMeasureId;
|
/**
|
* 单项检查内容结果
|
* */
|
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;
|
}
|
}
|