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; /** * BisInspFjpjmgdpAmParam * * @author lhc * @date 2023-11-8 */ public class BisInspFjpjmgdpAmParam extends PageParam implements Serializable { private String id; // 登记表ID @ApiParam(name = "登记表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; private Double f731; // 备注 @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 BisInspFjpjmgdpAmParam() { } 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; } 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; } }