package com.gk.hotwork.specialWork.model.dto.resp;
|
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
public class OthersWorkApprovalUnitFilledItemRespDTO implements Serializable {
|
|
private static final long serialVersionUID = -846725374243167L;
|
|
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 String analysisLocation;
|
|
private OthersWorkApprovalItemMeasureRespDTO measure;
|
|
private OthersWorkApprovalItemStandRespDTO stand;
|
|
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 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 OthersWorkApprovalItemMeasureRespDTO getMeasure() {
|
return measure;
|
}
|
|
public void setMeasure(OthersWorkApprovalItemMeasureRespDTO measure) {
|
this.measure = measure;
|
}
|
|
public OthersWorkApprovalItemStandRespDTO getStand() {
|
return stand;
|
}
|
|
public void setStand(OthersWorkApprovalItemStandRespDTO stand) {
|
this.stand = stand;
|
}
|
|
public String getItemTypeDesc() {
|
return itemTypeDesc;
|
}
|
|
public void setItemTypeDesc(String itemTypeDesc) {
|
this.itemTypeDesc = itemTypeDesc;
|
}
|
|
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;
|
}
|
}
|