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