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; /** * BisInspFjaccpSystemParam * * @author lhc * @date 2023-11-8 */ public class BisInspFjaccpSystemParam extends PageParam implements Serializable { private String id; // 登记表ID @ApiParam(name = "登记表ID") @ApiModelProperty(value = "登记表ID", name = "rgstrId") private String rgstrId; private Double f211; private Double f212; private Double f213; private Double f221; private Double f222; private Double f231; private Double f232; private Double f233; private Double f241; private Double f242; private Double f243; private Double f244; private Double f245; // 备注 @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 BisInspFjaccpSystemParam() { } 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 getF211() { return f211; } public void setF211(Double f211) { this.f211 = f211; } public Double getF212() { return f212; } public void setF212(Double f212) { this.f212 = f212; } public Double getF213() { return f213; } public void setF213(Double f213) { this.f213 = f213; } public Double getF221() { return f221; } public void setF221(Double f221) { this.f221 = f221; } public Double getF222() { return f222; } public void setF222(Double f222) { this.f222 = f222; } public Double getF231() { return f231; } public void setF231(Double f231) { this.f231 = f231; } public Double getF232() { return f232; } public void setF232(Double f232) { this.f232 = f232; } public Double getF233() { return f233; } public void setF233(Double f233) { this.f233 = f233; } public Double getF241() { return f241; } public void setF241(Double f241) { this.f241 = f241; } public Double getF242() { return f242; } public void setF242(Double f242) { this.f242 = f242; } public Double getF243() { return f243; } public void setF243(Double f243) { this.f243 = f243; } public Double getF244() { return f244; } public void setF244(Double f244) { this.f244 = f244; } public Double getF245() { return f245; } public void setF245(Double f245) { this.f245 = f245; } 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; } }