package com.gk.hotwork.specialWork.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
@TableName("work_approval_filled_item")
|
public class WorkApprovalFilledItemInfo implements Serializable {
|
|
private static final long serialVersionUID = -2041475980387285234L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
private Long unitId;
|
|
private Long itemId;
|
|
private BigDecimal val;
|
|
private Long workApplyId;
|
|
private Byte measureVal;
|
|
private String measureText;
|
|
private String analysisLocation;
|
|
// 0不涉及,1涉及
|
private Byte fillType;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getUnitId() {
|
return unitId;
|
}
|
|
public void setUnitId(Long unitId) {
|
this.unitId = unitId;
|
}
|
|
public Long getItemId() {
|
return itemId;
|
}
|
|
public void setItemId(Long itemId) {
|
this.itemId = itemId;
|
}
|
|
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 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;
|
}
|
}
|