package cn.com.goldenwater.dcproj.model; import java.io.Serializable; import java.util.Date; import cn.com.goldenwater.core.model.BaseBean; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import io.swagger.annotations.ApiModelProperty; /** * entity:BisInspFjpjmgdpEm * * @author lhc * @date 2023-11-8 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class BisInspFjpjmgdpEm extends BaseBean implements Serializable { private String id; // 登记表ID @ApiModelProperty(value="登记表ID",name="rgstrId") private String rgstrId; private Double f611; private Double f612; private Double f613; private Double f614; private Double f615; private Double f616; private Double f621; private Double f622; private Double f631; // 备注 @ApiModelProperty(value="备注",name="note") private String note; // 记录人员ID @ApiModelProperty(value="记录人员ID",name="persId") private String persId; // 创建时间 @ApiModelProperty(value="创建时间",name="intm") private Date intm; // 最后修改时间 @ApiModelProperty(value="最后修改时间",name="uptm") private Date uptm; // 数据状态 @ApiModelProperty(value="数据状态",name="dataStat") private String dataStat; // 督查状态 @ApiModelProperty(value="督查状态",name="state") private String state; public BisInspFjpjmgdpEm() { } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getRgstrId() { return rgstrId; } public void setRgstrId(String rgstrId) { this.rgstrId = rgstrId; } public Double getF611() { return f611; } public void setF611(Double f611) { this.f611 = f611; } public Double getF612() { return f612; } public void setF612(Double f612) { this.f612 = f612; } public Double getF613() { return f613; } public void setF613(Double f613) { this.f613 = f613; } public Double getF614() { return f614; } public void setF614(Double f614) { this.f614 = f614; } public Double getF615() { return f615; } public void setF615(Double f615) { this.f615 = f615; } public Double getF616() { return f616; } public void setF616(Double f616) { this.f616 = f616; } public Double getF621() { return f621; } public void setF621(Double f621) { this.f621 = f621; } public Double getF622() { return f622; } public void setF622(Double f622) { this.f622 = f622; } public Double getF631() { return f631; } public void setF631(Double f631) { this.f631 = f631; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } public String getPersId() { return persId; } public void setPersId(String persId) { this.persId = persId; } public Date getIntm() { return intm; } public void setIntm(Date intm) { this.intm = intm; } public Date getUptm() { return uptm; } public void setUptm(Date uptm) { this.uptm = uptm; } public String getDataStat() { return dataStat; } public void setDataStat(String dataStat) { this.dataStat = dataStat; } public String getState() { return state; } public void setState(String state) { this.state = state; } @Override public String toString() { return "BisInspFjpjmgdpEm [" + "id=" + id + ", rgstrId=" + rgstrId + ", f611=" + f611 + ", f612=" + f612 + ", f613=" + f613 + ", f614=" + f614 + ", f615=" + f615 + ", f616=" + f616 + ", f621=" + f621 + ", f622=" + f622 + ", f631=" + f631 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + "]"; } }