dbb9060e598802dbecc485718e01581e77fff0e3.svn-base 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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:RsvrWork
  8. *
  9. * @author xuw
  10. * @date 2019-3-19
  11. */
  12. @ApiModel(value = "RsvrWork", description = "小水库督查工作对象")
  13. public class RsvrWork 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 = "rsvr")
  33. private int rsvr;
  34. @ApiModelProperty(value = "小一型水库数", name = "rsvrOne")
  35. private int rsvrOne;
  36. @ApiModelProperty(value = "小二型水库数", name = "rsvrTwo")
  37. private int rsvrTwo;
  38. @ApiModelProperty(value="中型水库数",name="rsvrThree")
  39. private int rsvrThree;
  40. @ApiModelProperty(value="大二型水库数",name="rsvrFour")
  41. private int rsvrFour;
  42. @ApiModelProperty(value="大一型水库数",name="rsvrFive")
  43. private int rsvrFive;
  44. @ApiModelProperty(value="问题总数",name="pblm")
  45. private int pblm;
  46. @ApiModelProperty(value="一般问题",name="pblmOne")
  47. private int pblmOne;
  48. @ApiModelProperty(value="较重问题",name="pblmTwo")
  49. private int pblmTwo;
  50. @ApiModelProperty(value="严重问题",name="pblmThree")
  51. private int pblmThree;
  52. @ApiModelProperty(value="特别严重问题",name="pblmFour")
  53. private int pblmFour;
  54. @ApiModelProperty(value="行政区划名称(app)",name="nm")
  55. private String nm;
  56. public int getRsvrThree() {
  57. return rsvrThree;
  58. }
  59. public void setRsvrThree(int rsvrThree) {
  60. this.rsvrThree = rsvrThree;
  61. }
  62. public int getRsvrFour() {
  63. return rsvrFour;
  64. }
  65. public void setRsvrFour(int rsvrFour) {
  66. this.rsvrFour = rsvrFour;
  67. }
  68. public int getRsvrFive() {
  69. return rsvrFive;
  70. }
  71. public void setRsvrFive(int rsvrFive) {
  72. this.rsvrFive = rsvrFive;
  73. }
  74. public int getPblmFour() {
  75. return pblmFour;
  76. }
  77. public void setPblmFour(int pblmFour) {
  78. this.pblmFour = pblmFour;
  79. }
  80. public String getNm() {
  81. return nm;
  82. }
  83. public void setNm(String nm) {
  84. this.nm = nm;
  85. }
  86. public RsvrWork() {
  87. }
  88. @Override
  89. public String toString() {
  90. return "BriefReport [" + "code=" + code + ", name=" + name+ ", group=" + group + ", pers=" + pers + ", pros=" + pros + ", country=" + country + ", rsvr=" + rsvr + ", rsvrOne=" + rsvrOne + ", rsvrTwo=" + rsvrTwo + ", pblm=" + pblm + "]";
  91. }
  92. public String getAdCode() {
  93. return adCode;
  94. }
  95. public void setAdCode(String adCode) {
  96. this.adCode = adCode;
  97. }
  98. public String getAdName() {
  99. return adName;
  100. }
  101. public void setAdName(String adName) {
  102. this.adName = adName;
  103. }
  104. public String getCode() {
  105. return code;
  106. }
  107. public void setCode(String code) {
  108. this.code = code;
  109. }
  110. public String getName() {
  111. return name;
  112. }
  113. public void setName(String name) {
  114. this.name = name;
  115. }
  116. public int getGroup() {
  117. return group;
  118. }
  119. public void setGroup(int group) {
  120. this.group = group;
  121. }
  122. public int getPers() {
  123. return pers;
  124. }
  125. public void setPers(int pers) {
  126. this.pers = pers;
  127. }
  128. public int getPros() {
  129. return pros;
  130. }
  131. public void setPros(int pros) {
  132. this.pros = pros;
  133. }
  134. public int getCountry() {
  135. return country;
  136. }
  137. public void setCountry(int country) {
  138. this.country = country;
  139. }
  140. public int getRsvr() {
  141. return rsvr;
  142. }
  143. public void setRsvr(int rsvr) {
  144. this.rsvr = rsvr;
  145. }
  146. public int getRsvrOne() {
  147. return rsvrOne;
  148. }
  149. public void setRsvrOne(int rsvrOne) {
  150. this.rsvrOne = rsvrOne;
  151. }
  152. public int getRsvrTwo() {
  153. return rsvrTwo;
  154. }
  155. public void setRsvrTwo(int rsvrTwo) {
  156. this.rsvrTwo = rsvrTwo;
  157. }
  158. public int getPblm() {
  159. return pblm;
  160. }
  161. public void setPblm(int pblm) {
  162. this.pblm = pblm;
  163. }
  164. public int getPblmOne() {
  165. return pblmOne;
  166. }
  167. public void setPblmOne(int pblmOne) {
  168. this.pblmOne = pblmOne;
  169. }
  170. public int getPblmTwo() {
  171. return pblmTwo;
  172. }
  173. public void setPblmTwo(int pblmTwo) {
  174. this.pblmTwo = pblmTwo;
  175. }
  176. public int getPblmThree() {
  177. return pblmThree;
  178. }
  179. public void setPblmThree(int pblmThree) {
  180. this.pblmThree = pblmThree;
  181. }
  182. public String getTypeName() {
  183. return typeName;
  184. }
  185. public void setTypeName(String typeName) {
  186. this.typeName = typeName;
  187. }
  188. }