| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- 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:BisRdwspRgstrRelVill
- *
- * @author lune
- * @date 2020-10-9
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class BisRdwspRgstrRelVill extends BaseBean implements Serializable {
- @ApiModelProperty(value="主键ID", position = 1)
- private String id;
- @ApiModelProperty(value="行政村编码", position = 2)
- private String villCode;
- @ApiModelProperty(value="农饮督查登记表id", position = 3)
- private String regstrId;
- @ApiModelProperty(value="行政村名称", position = 4)
- private String villageNm;
- @ApiModelProperty(value="行政村所在镇编码", position = 5)
- private String adCode;
- @ApiModelProperty(value="乡镇名称", position = 6)
- private String townName;
- @ApiModelProperty(value="工程概况-行政区名称/对象名称", position = 7)
- private String adName;
- @ApiModelProperty(value="工程概况-行政区划全称", position = 8)
- private String adFullName;
- @ApiModelProperty(value="创建人", position = 9)
- private String persId;
- @ApiModelProperty(value="暗访人名称", position = 10)
- private String recPers;
- @ApiModelProperty(value="创建时间", position = 11)
- private Date intm;
- @ApiModelProperty(value="更新时间", position = 12)
- private Date uptm;
- @ApiModelProperty(value="填报状态(0:未填报;1:填报中;2:已填报)", position = 13)
- private String status;
- public BisRdwspRgstrRelVill() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getVillCode() {
- return villCode;
- }
- public void setVillCode(String villCode) {
- this.villCode = villCode;
- }
- public String getRegstrId() {
- return regstrId;
- }
- public void setRegstrId(String regstrId) {
- this.regstrId = regstrId;
- }
- public String getVillageNm() {
- return villageNm;
- }
- public void setVillageNm(String villageNm) {
- this.villageNm = villageNm;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getTownName() {
- return townName;
- }
- public void setTownName(String townName) {
- this.townName = townName;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getRecPers() {
- return recPers;
- }
- public void setRecPers(String recPers) {
- this.recPers = recPers;
- }
- 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 getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- @Override
- public String toString() {
- return "BisRdwspRgstrRelVill [" + "id=" + id + ", villCode=" + villCode + ", regstrId=" + regstrId + ", villageNm=" + villageNm + ", adCode=" + adCode + ", townName=" + townName + ", adName=" + adName + ", adFullName=" + adFullName + ", persId=" + persId + ", recPers=" + recPers + ", intm=" + intm + ", uptm=" + uptm + ", status=" + status + "]";
- }
- }
|