f5dd1f1d396574b6f42b0697deed15380c19840d.svn-base 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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 EmpwtRunWork {
  7. @ApiModelProperty(value = "督查类型", name = "typeName")
  8. private String typeName = "172重点工程运行";
  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 = "rsvr")
  26. private int empwt;
  27. @ApiModelProperty(value = "问题总数", name = "pblm")
  28. private int pblm;
  29. @ApiModelProperty(value = "一般问题", name = "pblmOne")
  30. private int pblmOne;
  31. @ApiModelProperty(value = "较重问题", name = "pblmTwo")
  32. private int pblmTwo;
  33. @ApiModelProperty(value = "严重问题", name = "pblmThree")
  34. private int pblmThree;
  35. @ApiModelProperty(value = "特别严重问题", name = "pblmFour")
  36. private int pblmFour;
  37. @ApiModelProperty(value = "行政区划名称(app)", name = "nm")
  38. private String nm;
  39. public String getTypeName() {
  40. return typeName;
  41. }
  42. public void setTypeName(String typeName) {
  43. this.typeName = typeName;
  44. }
  45. public String getAdCode() {
  46. return adCode;
  47. }
  48. public void setAdCode(String adCode) {
  49. this.adCode = adCode;
  50. }
  51. public String getAdName() {
  52. return adName;
  53. }
  54. public void setAdName(String adName) {
  55. this.adName = adName;
  56. }
  57. public String getCode() {
  58. return code;
  59. }
  60. public void setCode(String code) {
  61. this.code = code;
  62. }
  63. public String getName() {
  64. return name;
  65. }
  66. public void setName(String name) {
  67. this.name = name;
  68. }
  69. public int getGroup() {
  70. return group;
  71. }
  72. public void setGroup(int group) {
  73. this.group = group;
  74. }
  75. public int getPers() {
  76. return pers;
  77. }
  78. public void setPers(int pers) {
  79. this.pers = pers;
  80. }
  81. public int getPros() {
  82. return pros;
  83. }
  84. public void setPros(int pros) {
  85. this.pros = pros;
  86. }
  87. public int getCountry() {
  88. return country;
  89. }
  90. public void setCountry(int country) {
  91. this.country = country;
  92. }
  93. public int getEmpwt() {
  94. return empwt;
  95. }
  96. public void setEmpwt(int empwt) {
  97. this.empwt = empwt;
  98. }
  99. public int getPblm() {
  100. return pblm;
  101. }
  102. public void setPblm(int pblm) {
  103. this.pblm = pblm;
  104. }
  105. public int getPblmOne() {
  106. return pblmOne;
  107. }
  108. public void setPblmOne(int pblmOne) {
  109. this.pblmOne = pblmOne;
  110. }
  111. public int getPblmTwo() {
  112. return pblmTwo;
  113. }
  114. public void setPblmTwo(int pblmTwo) {
  115. this.pblmTwo = pblmTwo;
  116. }
  117. public int getPblmThree() {
  118. return pblmThree;
  119. }
  120. public void setPblmThree(int pblmThree) {
  121. this.pblmThree = pblmThree;
  122. }
  123. public int getPblmFour() {
  124. return pblmFour;
  125. }
  126. public void setPblmFour(int pblmFour) {
  127. this.pblmFour = pblmFour;
  128. }
  129. public String getNm() {
  130. return nm;
  131. }
  132. public void setNm(String nm) {
  133. this.nm = nm;
  134. }
  135. @Override
  136. public String toString() {
  137. return "EmpwtConWork{" +
  138. "typeName='" + typeName + '\'' +
  139. ", adCode='" + adCode + '\'' +
  140. ", adName='" + adName + '\'' +
  141. ", code='" + code + '\'' +
  142. ", name='" + name + '\'' +
  143. ", group=" + group +
  144. ", pers=" + pers +
  145. ", pros=" + pros +
  146. ", country=" + country +
  147. ", empwt=" + empwt +
  148. ", pblm=" + pblm +
  149. ", pblmOne=" + pblmOne +
  150. ", pblmTwo=" + pblmTwo +
  151. ", pblmThree=" + pblmThree +
  152. ", pblmFour=" + pblmFour +
  153. ", nm='" + nm + '\'' +
  154. '}';
  155. }
  156. }