1e061582b095693511b9e317b39ece3c9845fc70.svn-base 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:VillWork
  8. *
  9. * @author xuw
  10. * @date 2019-3-19
  11. */
  12. @ApiModel(value = "VillWork", description = "人饮督查工作对象")
  13. public class VillWork extends BaseBean implements Serializable {
  14. @ApiModelProperty(value = "督查类型", name = "typeName")
  15. private String typeName = "人饮";
  16. @ApiModelProperty(value = "省编号", name = "adCode")
  17. private String adCode;
  18. @ApiModelProperty(value = "省名称", name = "adName")
  19. private String adName;
  20. @ApiModelProperty(value = "机构节点编码", name = "code")
  21. private String code;
  22. @ApiModelProperty(value = "机构节点名称", name = "name")
  23. private String name;
  24. @ApiModelProperty(value = "组", name = "group")
  25. private int group;
  26. @ApiModelProperty(value = "人", name = "pers")
  27. private int pers;
  28. @ApiModelProperty(value = "省", name = "pros")
  29. private int pros;
  30. @ApiModelProperty(value = "县", name = "country")
  31. private int country;
  32. @ApiModelProperty(value = "行政村", name = "vill")
  33. private int vill;
  34. @ApiModelProperty(value = "用水户", name = "wUser")
  35. private int wUser;
  36. @ApiModelProperty(value = "农饮工程", name = "cws")
  37. private int cws;
  38. @ApiModelProperty(value = "水源地", name = "water")
  39. private int water;
  40. @ApiModelProperty(value = "问题总数", name = "pblm")
  41. private int pblm;
  42. @ApiModelProperty(value = "一般问题", name = "pblmOne")
  43. private int pblmOne;
  44. @ApiModelProperty(value = "较重问题", name = "pblmTwo")
  45. private int pblmTwo;
  46. @ApiModelProperty(value = "严重问题", name = "pblmThree")
  47. private int pblmThree;
  48. public VillWork() {
  49. }
  50. @Override
  51. public String toString() {
  52. return "BriefReport [" + "code=" + code + ", name=" + name + ", group=" + group + ", pers=" + pers + ", pros=" + pros + ", country=" + country + ", vill=" + vill + ", wUser=" + wUser + ", cws=" + cws + ", water=" + water + ", pblm=" + pblm + "]";
  53. }
  54. public String getAdCode() {
  55. return adCode;
  56. }
  57. public void setAdCode(String adCode) {
  58. this.adCode = adCode;
  59. }
  60. public String getAdName() {
  61. return adName;
  62. }
  63. public void setAdName(String adName) {
  64. this.adName = adName;
  65. }
  66. public String getCode() {
  67. return code;
  68. }
  69. public void setCode(String code) {
  70. this.code = code;
  71. }
  72. public String getName() {
  73. return name;
  74. }
  75. public void setName(String name) {
  76. this.name = name;
  77. }
  78. public int getGroup() {
  79. return group;
  80. }
  81. public void setGroup(int group) {
  82. this.group = group;
  83. }
  84. public int getPers() {
  85. return pers;
  86. }
  87. public void setPers(int pers) {
  88. this.pers = pers;
  89. }
  90. public int getPros() {
  91. return pros;
  92. }
  93. public void setPros(int pros) {
  94. this.pros = pros;
  95. }
  96. public int getCountry() {
  97. return country;
  98. }
  99. public void setCountry(int country) {
  100. this.country = country;
  101. }
  102. public int getVill() {
  103. return vill;
  104. }
  105. public void setVill(int vill) {
  106. this.vill = vill;
  107. }
  108. public int getwUser() {
  109. return wUser;
  110. }
  111. public void setwUser(int wUser) {
  112. this.wUser = wUser;
  113. }
  114. public int getCws() {
  115. return cws;
  116. }
  117. public void setCws(int cws) {
  118. this.cws = cws;
  119. }
  120. public int getWater() {
  121. return water;
  122. }
  123. public void setWater(int water) {
  124. this.water = water;
  125. }
  126. public int getPblm() {
  127. return pblm;
  128. }
  129. public void setPblm(int pblm) {
  130. this.pblm = pblm;
  131. }
  132. public int getPblmOne() {
  133. return pblmOne;
  134. }
  135. public void setPblmOne(int pblmOne) {
  136. this.pblmOne = pblmOne;
  137. }
  138. public int getPblmTwo() {
  139. return pblmTwo;
  140. }
  141. public void setPblmTwo(int pblmTwo) {
  142. this.pblmTwo = pblmTwo;
  143. }
  144. public int getPblmThree() {
  145. return pblmThree;
  146. }
  147. public void setPblmThree(int pblmThree) {
  148. this.pblmThree = pblmThree;
  149. }
  150. public String getTypeName() {
  151. return typeName;
  152. }
  153. public void setTypeName(String typeName) {
  154. this.typeName = typeName;
  155. }
  156. }