2310423c434666c565971d5affe3977250e82dbf.svn-base 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. package cn.com.goldenwater.dcproj.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. /**
  4. * Created by 61618 on 2019/5/24.
  5. */
  6. public class WagaWork {
  7. @ApiModelProperty(value = "督查类型", name = "typeName")
  8. private String typeName = "水闸";
  9. @ApiModelProperty(value = "省编号", name = "adCode")
  10. private String adCode;
  11. @ApiModelProperty(value = "省名称", name = "adName")
  12. private String adName;
  13. @ApiModelProperty(value = "机构节点编码", name = "code")
  14. private String code;
  15. @ApiModelProperty(value = "机构节点名称", name = "name")
  16. private String name;
  17. @ApiModelProperty(value = "组", name = "group")
  18. private int group;
  19. @ApiModelProperty(value = "人", name = "pers")
  20. private int pers;
  21. @ApiModelProperty(value = "省", name = "pros")
  22. private int pros;
  23. @ApiModelProperty(value = "县", name = "country")
  24. private int country;
  25. @ApiModelProperty(value = "水闸数", name = "waga")
  26. private int waga;
  27. @ApiModelProperty(value = "大型水闸数", name = "wagaOne")
  28. private int wagaOne;
  29. @ApiModelProperty(value = "中型水闸数", name = "wagaTwo")
  30. private int wagaTwo;
  31. @ApiModelProperty(value = "小型水闸数", name = "wagaThree")
  32. private int wagaThree;
  33. @ApiModelProperty(value = "其他水闸数", name = "wagaFour")
  34. private int wagaFour;
  35. @ApiModelProperty(value = "问题总数", name = "pblm")
  36. private int pblm;
  37. @ApiModelProperty(value = "一般问题", name = "pblmOne")
  38. private int pblmOne;
  39. @ApiModelProperty(value = "较重问题", name = "pblmTwo")
  40. private int pblmTwo;
  41. @ApiModelProperty(value = "严重问题", name = "pblmThree")
  42. private int pblmThree;
  43. @ApiModelProperty(value = "特别严重问题", name = "pblmFour")
  44. private int pblmFour;
  45. @ApiModelProperty(value = "行政区划名称(app)", name = "nm")
  46. private String nm;
  47. public String getTypeName() {
  48. return typeName;
  49. }
  50. public void setTypeName(String typeName) {
  51. this.typeName = typeName;
  52. }
  53. public String getAdCode() {
  54. return adCode;
  55. }
  56. public void setAdCode(String adCode) {
  57. this.adCode = adCode;
  58. }
  59. public String getAdName() {
  60. return adName;
  61. }
  62. public void setAdName(String adName) {
  63. this.adName = adName;
  64. }
  65. public String getCode() {
  66. return code;
  67. }
  68. public void setCode(String code) {
  69. this.code = code;
  70. }
  71. public String getName() {
  72. return name;
  73. }
  74. public void setName(String name) {
  75. this.name = name;
  76. }
  77. public int getGroup() {
  78. return group;
  79. }
  80. public void setGroup(int group) {
  81. this.group = group;
  82. }
  83. public int getPers() {
  84. return pers;
  85. }
  86. public void setPers(int pers) {
  87. this.pers = pers;
  88. }
  89. public int getPros() {
  90. return pros;
  91. }
  92. public void setPros(int pros) {
  93. this.pros = pros;
  94. }
  95. public int getCountry() {
  96. return country;
  97. }
  98. public void setCountry(int country) {
  99. this.country = country;
  100. }
  101. public int getWaga() {
  102. return waga;
  103. }
  104. public void setWaga(int waga) {
  105. this.waga = waga;
  106. }
  107. public int getWagaOne() {
  108. return wagaOne;
  109. }
  110. public void setWagaOne(int wagaOne) {
  111. this.wagaOne = wagaOne;
  112. }
  113. public int getWagaTwo() {
  114. return wagaTwo;
  115. }
  116. public void setWagaTwo(int wagaTwo) {
  117. this.wagaTwo = wagaTwo;
  118. }
  119. public int getWagaThree() {
  120. return wagaThree;
  121. }
  122. public void setWagaThree(int wagaThree) {
  123. this.wagaThree = wagaThree;
  124. }
  125. public int getPblm() {
  126. return pblm;
  127. }
  128. public void setPblm(int pblm) {
  129. this.pblm = pblm;
  130. }
  131. public int getPblmOne() {
  132. return pblmOne;
  133. }
  134. public void setPblmOne(int pblmOne) {
  135. this.pblmOne = pblmOne;
  136. }
  137. public int getPblmTwo() {
  138. return pblmTwo;
  139. }
  140. public void setPblmTwo(int pblmTwo) {
  141. this.pblmTwo = pblmTwo;
  142. }
  143. public int getPblmThree() {
  144. return pblmThree;
  145. }
  146. public void setPblmThree(int pblmThree) {
  147. this.pblmThree = pblmThree;
  148. }
  149. public int getPblmFour() {
  150. return pblmFour;
  151. }
  152. public void setPblmFour(int pblmFour) {
  153. this.pblmFour = pblmFour;
  154. }
  155. public String getNm() {
  156. return nm;
  157. }
  158. public void setNm(String nm) {
  159. this.nm = nm;
  160. }
  161. public int getWagaFour() {
  162. return wagaFour;
  163. }
  164. public void setWagaFour(int wagaFour) {
  165. this.wagaFour = wagaFour;
  166. }
  167. @Override
  168. public String toString() {
  169. return "WagaWork{" +
  170. "typeName='" + typeName + '\'' +
  171. ", adCode='" + adCode + '\'' +
  172. ", adName='" + adName + '\'' +
  173. ", code='" + code + '\'' +
  174. ", name='" + name + '\'' +
  175. ", group=" + group +
  176. ", pers=" + pers +
  177. ", pros=" + pros +
  178. ", country=" + country +
  179. ", waga=" + waga +
  180. ", wagaOne=" + wagaOne +
  181. ", wagaTwo=" + wagaTwo +
  182. ", wagaThree=" + wagaThree +
  183. ", wagaFour=" + wagaFour +
  184. ", pblm=" + pblm +
  185. ", pblmOne=" + pblmOne +
  186. ", pblmTwo=" + pblmTwo +
  187. ", pblmThree=" + pblmThree +
  188. ", pblmFour=" + pblmFour +
  189. ", nm='" + nm + '\'' +
  190. '}';
  191. }
  192. }