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:BisInspFjaccpCimt * * @author lhc * @date 2023-11-8 */ @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"}) public class BisInspFjaccpCimt extends BaseBean implements Serializable { private String id; // 登记表ID @ApiModelProperty(value="登记表ID",name="rgstrId") private String rgstrId; private Double f811; private Double f812; private Double f813; private Double f814; private Double f815; private Double f821; // 备注 @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 BisInspFjaccpCimt() { } 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 getF811() { return f811; } public void setF811(Double f811) { this.f811 = f811; } public Double getF812() { return f812; } public void setF812(Double f812) { this.f812 = f812; } public Double getF813() { return f813; } public void setF813(Double f813) { this.f813 = f813; } public Double getF814() { return f814; } public void setF814(Double f814) { this.f814 = f814; } public Double getF815() { return f815; } public void setF815(Double f815) { this.f815 = f815; } public Double getF821() { return f821; } public void setF821(Double f821) { this.f821 = f821; } 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 "BisInspFjaccpCimt [" + "id=" + id + ", rgstrId=" + rgstrId + ", f811=" + f811 + ", f812=" + f812 + ", f813=" + f813 + ", f814=" + f814 + ", f815=" + f815 + ", f821=" + f821 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + "]"; } }