d687ed7d8fe1ffd1297830f8f130bf4ca0516e65.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisRdwspRgstrRelVill
  9. *
  10. * @author lune
  11. * @date 2020-10-9
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisRdwspRgstrRelVill extends BaseBean implements Serializable {
  15. @ApiModelProperty(value="主键ID", position = 1)
  16. private String id;
  17. @ApiModelProperty(value="行政村编码", position = 2)
  18. private String villCode;
  19. @ApiModelProperty(value="农饮督查登记表id", position = 3)
  20. private String regstrId;
  21. @ApiModelProperty(value="行政村名称", position = 4)
  22. private String villageNm;
  23. @ApiModelProperty(value="行政村所在镇编码", position = 5)
  24. private String adCode;
  25. @ApiModelProperty(value="乡镇名称", position = 6)
  26. private String townName;
  27. @ApiModelProperty(value="工程概况-行政区名称/对象名称", position = 7)
  28. private String adName;
  29. @ApiModelProperty(value="工程概况-行政区划全称", position = 8)
  30. private String adFullName;
  31. @ApiModelProperty(value="创建人", position = 9)
  32. private String persId;
  33. @ApiModelProperty(value="暗访人名称", position = 10)
  34. private String recPers;
  35. @ApiModelProperty(value="创建时间", position = 11)
  36. private Date intm;
  37. @ApiModelProperty(value="更新时间", position = 12)
  38. private Date uptm;
  39. @ApiModelProperty(value="填报状态(0:未填报;1:填报中;2:已填报)", position = 13)
  40. private String status;
  41. public BisRdwspRgstrRelVill() {
  42. }
  43. public String getId() {
  44. return id;
  45. }
  46. public void setId(String id) {
  47. this.id = id;
  48. }
  49. public String getVillCode() {
  50. return villCode;
  51. }
  52. public void setVillCode(String villCode) {
  53. this.villCode = villCode;
  54. }
  55. public String getRegstrId() {
  56. return regstrId;
  57. }
  58. public void setRegstrId(String regstrId) {
  59. this.regstrId = regstrId;
  60. }
  61. public String getVillageNm() {
  62. return villageNm;
  63. }
  64. public void setVillageNm(String villageNm) {
  65. this.villageNm = villageNm;
  66. }
  67. public String getAdCode() {
  68. return adCode;
  69. }
  70. public void setAdCode(String adCode) {
  71. this.adCode = adCode;
  72. }
  73. public String getTownName() {
  74. return townName;
  75. }
  76. public void setTownName(String townName) {
  77. this.townName = townName;
  78. }
  79. public String getAdName() {
  80. return adName;
  81. }
  82. public void setAdName(String adName) {
  83. this.adName = adName;
  84. }
  85. public String getAdFullName() {
  86. return adFullName;
  87. }
  88. public void setAdFullName(String adFullName) {
  89. this.adFullName = adFullName;
  90. }
  91. public String getPersId() {
  92. return persId;
  93. }
  94. public void setPersId(String persId) {
  95. this.persId = persId;
  96. }
  97. public String getRecPers() {
  98. return recPers;
  99. }
  100. public void setRecPers(String recPers) {
  101. this.recPers = recPers;
  102. }
  103. public Date getIntm() {
  104. return intm;
  105. }
  106. public void setIntm(Date intm) {
  107. this.intm = intm;
  108. }
  109. public Date getUptm() {
  110. return uptm;
  111. }
  112. public void setUptm(Date uptm) {
  113. this.uptm = uptm;
  114. }
  115. public String getStatus() {
  116. return status;
  117. }
  118. public void setStatus(String status) {
  119. this.status = status;
  120. }
  121. @Override
  122. public String toString() {
  123. 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 + "]";
  124. }
  125. }