| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * entity:BisInspFjpjlglSystem
- *
- * @author lhc
- * @date 2023-11-7
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisInspFjpjlglSystem extends BaseBean implements Serializable {
- private String id;
- // 登记表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;
- // 备注
- @ApiModelProperty(value="备注",name="note")
- private String note;
- // 记录人员ID
- @ApiModelProperty(value="记录人员ID",name="persId")
- private String persId;
- // 创建时间
- @ApiModelProperty(value="创建时间",name="intm")
- private Date intm;
- // 最后修改时间
- @ApiModelProperty(value="最后修改时间",name="uptm")
- private Date uptm;
- // 数据状态
- @ApiModelProperty(value="数据状态",name="dataStat")
- private String dataStat;
- // 督查状态
- @ApiModelProperty(value="督查状态",name="state")
- private String state;
- public BisInspFjpjlglSystem() {
- }
- 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;
- }
- @Override
- public String toString() {
- return "BisInspFjpjlglSystem [" + "id=" + id + ", rgstrId=" + rgstrId + ", f211=" + f211 + ", f212=" + f212 + ", f213=" + f213 + ", f221=" + f221 + ", f222=" + f222 + ", f231=" + f231 + ", f232=" + f232 + ", f233=" + f233 + ", f241=" + f241 + ", f242=" + f242 + ", f243=" + f243 + ", f244=" + f244 + ", f245=" + f245 + ", note=" + note + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", state=" + state + "]";
- }
- }
|