| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- 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;
- }
- }
|