package com.gkhy.safePlatform.specialWork.model.dto.resp.approver;
|
|
import java.io.Serializable;
|
|
public class ApproverWorkPendingApprovalItemMeasureRespDTO implements Serializable {
|
|
private static final long serialVersionUID = -3087275887505253057L;
|
|
//ID,主键
|
private Long measureId;
|
|
//安全措施所属作业类型
|
private Byte workType;
|
|
private String workTypeDesc;
|
|
//安全措施类型,1:选择 | 2:填空
|
private Byte type;
|
|
private String typeDesc;
|
|
//正确值
|
private Byte correctVal;
|
|
//文字内容,最长64汉字
|
private String context;
|
|
private Long workApplyId;
|
|
|
public Long getMeasureId() {
|
return measureId;
|
}
|
|
public void setMeasureId(Long measureId) {
|
this.measureId = measureId;
|
}
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
|
public String getWorkTypeDesc() {
|
return workTypeDesc;
|
}
|
|
public void setWorkTypeDesc(String workTypeDesc) {
|
this.workTypeDesc = workTypeDesc;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
public String getTypeDesc() {
|
return typeDesc;
|
}
|
|
public void setTypeDesc(String typeDesc) {
|
this.typeDesc = typeDesc;
|
}
|
|
public Byte getCorrectVal() {
|
return correctVal;
|
}
|
|
public void setCorrectVal(Byte correctVal) {
|
this.correctVal = correctVal;
|
}
|
|
public String getContext() {
|
return context;
|
}
|
|
public void setContext(String context) {
|
this.context = context;
|
}
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
}
|