package com.gkhy.safePlatform.specialWork.model.dto.resp.approver; import java.io.Serializable; import java.math.BigDecimal; public class ApproverWorkApprovalUnitFilledItemRespDTO implements Serializable { private static final long serialVersionUID = 587179894762614992L; private Long id; private Long itemId; private Long unitId; private BigDecimal val; private Long workApplyId; private Byte measureVal; private String measureValDesc; private String measureText; private Byte fillType; private String fillTypeDesc; //填报项名称 private String itemName; //填报类型 数值、选项、填空... private Byte itemType; private String itemTypeDesc; //适用标准ID private Long standId; private Long measureId; //安全措施 - 是否是涉及项 private Boolean measureInvolve; private ApproverWorkApprovalItemMeasureRespDTO measure; private ApproverWorkApprovalItemStandRespDTO stand; private String analysisLocation; public Long getItemId() { return itemId; } public void setItemId(Long itemId) { this.itemId = itemId; } public Long getUnitId() { return unitId; } public void setUnitId(Long unitId) { this.unitId = unitId; } public BigDecimal getVal() { return val; } public void setVal(BigDecimal val) { this.val = val; } public Long getWorkApplyId() { return workApplyId; } public void setWorkApplyId(Long workApplyId) { this.workApplyId = workApplyId; } public Byte getMeasureVal() { return measureVal; } public void setMeasureVal(Byte measureVal) { this.measureVal = measureVal; } public String getMeasureText() { return measureText; } public void setMeasureText(String measureText) { this.measureText = measureText; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getItemName() { return itemName; } public void setItemName(String itemName) { this.itemName = itemName; } public Byte getItemType() { return itemType; } public void setItemType(Byte itemType) { this.itemType = itemType; } public String getItemTypeDesc() { return itemTypeDesc; } public void setItemTypeDesc(String itemTypeDesc) { this.itemTypeDesc = itemTypeDesc; } public Long getStandId() { return standId; } public void setStandId(Long standId) { this.standId = standId; } public Long getMeasureId() { return measureId; } public void setMeasureId(Long measureId) { this.measureId = measureId; } public Boolean getMeasureInvolve() { return measureInvolve; } public void setMeasureInvolve(Boolean measureInvolve) { this.measureInvolve = measureInvolve; } public ApproverWorkApprovalItemMeasureRespDTO getMeasure() { return measure; } public void setMeasure(ApproverWorkApprovalItemMeasureRespDTO measure) { this.measure = measure; } public ApproverWorkApprovalItemStandRespDTO getStand() { return stand; } public void setStand(ApproverWorkApprovalItemStandRespDTO stand) { this.stand = stand; } public String getAnalysisLocation() { return analysisLocation; } public void setAnalysisLocation(String analysisLocation) { this.analysisLocation = analysisLocation; } public String getMeasureValDesc() { return measureValDesc; } public void setMeasureValDesc(String measureValDesc) { this.measureValDesc = measureValDesc; } public Byte getFillType() { return fillType; } public void setFillType(Byte fillType) { this.fillType = fillType; } public String getFillTypeDesc() { return fillTypeDesc; } public void setFillTypeDesc(String fillTypeDesc) { this.fillTypeDesc = fillTypeDesc; } }