package com.gkhy.safePlatform.specialWork.model.dto.resp.applicant; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; public class ApplicantWorkApprovalItemMeasureRespDTO implements Serializable { private static final long serialVersionUID = -8752942057117048672L; //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 Byte getType() { return type; } public void setType(Byte type) { this.type = type; } 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; } public String getWorkTypeDesc() { return workTypeDesc; } public void setWorkTypeDesc(String workTypeDesc) { this.workTypeDesc = workTypeDesc; } public String getTypeDesc() { return typeDesc; } public void setTypeDesc(String typeDesc) { this.typeDesc = typeDesc; } }