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:BisInspFjaccpAm * * @author lhc * @date 2023-11-8 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class BisInspFjaccpAm extends BaseBean implements Serializable { private Double f731; // 备注 @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; private String id; // 登记表ID @ApiModelProperty(value="登记表ID",name="rgstrId") private String rgstrId; private Double f711; private Double f712; private Double f721; private Double f722; private Double f723; private Double f724; private Double f725; public BisInspFjaccpAm() { } public Double getF731() { return f731; } public void setF731(Double f731) { this.f731 = f731; } 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; } 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 getF711() { return f711; } public void setF711(Double f711) { this.f711 = f711; } public Double getF712() { return f712; } public void setF712(Double f712) { this.f712 = f712; } public Double getF721() { return f721; } public void setF721(Double f721) { this.f721 = f721; } public Double getF722() { return f722; } public void setF722(Double f722) { this.f722 = f722; } public Double getF723() { return f723; } public void setF723(Double f723) { this.f723 = f723; } public Double getF724() { return f724; } public void setF724(Double f724) { this.f724 = f724; } public Double getF725() { return f725; } public void setF725(Double f725) { this.f725 = f725; } @Override public String toString() { return "BisInspFjaccpAm [" + "f731=" + f731 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + ", id=" + id + ", rgstrId=" + rgstrId + ", f711=" + f711 + ", f712=" + f712 + ", f721=" + f721 + ", f722=" + f722 + ", f723=" + f723 + ", f724=" + f724 + ", f725=" + f725 + "]"; } }