package cn.com.goldenwater.dcproj.param; import cn.com.goldenwater.core.param.PageParam; import io.swagger.annotations.ApiParam; import java.util.Date; import java.io.Serializable; import io.swagger.annotations.ApiModelProperty; /** * BisInspFjpjlglTvetParam * * @author lhc * @date 2023-11-7 */ public class BisInspFjpjlglTvetParam extends PageParam implements Serializable { private String id; // 登记表ID @ApiParam(name = "登记表ID") @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; private Double f311; private Double f312; private Double f321; private Double f322; private Double f323; private Double f324; private Double f325; private Double f326; // 备注 @ApiParam(name = "备注") @ApiModelProperty(value = "备注", name = "note") private String note; // 记录人员ID @ApiParam(name = "记录人员ID") @ApiModelProperty(value = "记录人员ID", name = "persId") private String persId; // 创建时间 @ApiParam(name = "创建时间") @ApiModelProperty(value = "创建时间", name = "intm") private Date intm; // 最后修改时间 @ApiParam(name = "最后修改时间") @ApiModelProperty(value = "最后修改时间", name = "uptm") private Date uptm; // 数据状态 @ApiParam(name = "数据状态") @ApiModelProperty(value = "数据状态", name = "dataStat") private String dataStat; // 督查状态 @ApiParam(name = "督查状态") @ApiModelProperty(value = "督查状态", name = "state") private String state; public BisInspFjpjlglTvetParam() { } 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 getF311() { return f311; } public void setF311(Double f311) { this.f311 = f311; } public Double getF312() { return f312; } public void setF312(Double f312) { this.f312 = f312; } public Double getF321() { return f321; } public void setF321(Double f321) { this.f321 = f321; } public Double getF322() { return f322; } public void setF322(Double f322) { this.f322 = f322; } public Double getF323() { return f323; } public void setF323(Double f323) { this.f323 = f323; } public Double getF324() { return f324; } public void setF324(Double f324) { this.f324 = f324; } public Double getF325() { return f325; } public void setF325(Double f325) { this.f325 = f325; } public Double getF326() { return f326; } public void setF326(Double f326) { this.f326 = f326; } 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; } }