package com.gkhy.safePlatform.specialWork.model.dto.req;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
public class ApprovalItemReqDTO implements Serializable {
|
|
private static final long serialVersionUID = 4926072360470256436L;
|
|
private Long itemId;
|
|
private Byte measureVal;
|
|
private String measureText;
|
|
private String analysisLocation;
|
|
private Byte fillType;
|
|
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 getItemId() {
|
return itemId;
|
}
|
|
public void setItemId(Long itemId) {
|
this.itemId = itemId;
|
}
|
|
public String getAnalysisLocation() {
|
return analysisLocation;
|
}
|
|
public void setAnalysisLocation(String analysisLocation) {
|
this.analysisLocation = analysisLocation;
|
}
|
|
public Byte getFillType() {
|
return fillType;
|
}
|
|
public void setFillType(Byte fillType) {
|
this.fillType = fillType;
|
}
|
}
|