| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspVillgdWtsp
- *
- * @author lhc
- * @date 2021-4-23
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspVillgdWtsp extends BaseBean implements Serializable {
- // 主键ID
- @ApiModelProperty(value = "主键ID", name = "id")
- private String id;
- // 登记表ID
- @ApiModelProperty(value = "登记表ID", name = "rgstrId")
- private String rgstrId;
- // 督查对象ID
- @ApiModelProperty(value = "督查对象ID", name = "objId")
- private String objId;
- // 供水工程名称
- @ApiModelProperty(value = "供水工程名称", name = "nm")
- private String nm;
- // 供水工程规模
- @ApiModelProperty(value = "供水工程规模", name = "designWaterSupply")
- private String designWaterSupply;
- // 地点(县,乡镇,行政村,村组)
- @ApiModelProperty(value = "地点(县,乡镇,行政村,村组)", name = "loc")
- private String loc;
- // 运行管理单位名称
- @ApiModelProperty(value = "运行管理单位名称", name = "runDep")
- private String runDep;
- // 管理人员数量
- @ApiModelProperty(value = "管理人员数量", name = "mngSize")
- private String mngSize;
- // 记录人员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 = "note")
- private String note;
- // 数据状态(0:正常;9:删除)
- @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
- private String dataStat;
- @ApiModelProperty(value = "", name = "caseState")
- private String caseState;
- @ApiModelProperty(value = "", name = "othrState")
- private String othrState;
- @ApiModelProperty(value = "", name = "runState")
- private String runState;
- @ApiModelProperty(value = "", name = "srcState")
- private String srcState;
- public BisInspVillgdWtsp() {
- }
- public String getCaseState() {
- return caseState;
- }
- public void setCaseState(String caseState) {
- this.caseState = caseState;
- }
- public String getOthrState() {
- return othrState;
- }
- public void setOthrState(String othrState) {
- this.othrState = othrState;
- }
- public String getRunState() {
- return runState;
- }
- public void setRunState(String runState) {
- this.runState = runState;
- }
- public String getSrcState() {
- return srcState;
- }
- public void setSrcState(String srcState) {
- this.srcState = srcState;
- }
- 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 String getObjId() {
- return objId;
- }
- public void setObjId(String objId) {
- this.objId = objId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getDesignWaterSupply() {
- return designWaterSupply;
- }
- public void setDesignWaterSupply(String designWaterSupply) {
- this.designWaterSupply = designWaterSupply;
- }
- public String getLoc() {
- return loc;
- }
- public void setLoc(String loc) {
- this.loc = loc;
- }
- public String getRunDep() {
- return runDep;
- }
- public void setRunDep(String runDep) {
- this.runDep = runDep;
- }
- public String getMngSize() {
- return mngSize;
- }
- public void setMngSize(String mngSize) {
- this.mngSize = mngSize;
- }
- 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 getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String toString() {
- return "BisInspVillgdWtsp [" + "id=" + id + ", rgstrId=" + rgstrId + ", objId=" + objId + ", nm=" + nm + ", designWaterSupply=" + designWaterSupply + ", loc=" + loc + ", runDep=" + runDep + ", mngSize=" + mngSize + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
- }
- }
|