023e9a0d17dea052ec079c62c3df0916efd7eec4.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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:RectWork
  8. *
  9. * @author xuw
  10. * @date 2019-3-19
  11. */
  12. @ApiModel(value = "BriefWork", description = "通用督查工作对象")
  13. public class BriefWork 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 = "orgs")
  25. private int orgs;
  26. @ApiModelProperty(value = "组", name = "group")
  27. private int group;
  28. @ApiModelProperty(value = "人", name = "pers")
  29. private int pers;
  30. @ApiModelProperty(value = "省", name = "pros")
  31. private int pros;
  32. @ApiModelProperty(value = "县", name = "country")
  33. private int country;
  34. @ApiModelProperty(value = "项目数", name = "rect")
  35. private int rect;
  36. @ApiModelProperty(value = "问题总数", name = "pblm")
  37. private int pblm;
  38. @ApiModelProperty(value = "一般问题", name = "pblmOne")
  39. private int pblmOne;
  40. @ApiModelProperty(value = "较重问题", name = "pblmTwo")
  41. private int pblmTwo;
  42. @ApiModelProperty(value = "严重问题", name = "pblmThree")
  43. private int pblmThree;
  44. @ApiModelProperty(value = "特别严重问题", name = "pblmFour")
  45. private int pblmFour;
  46. public BriefWork() {
  47. }
  48. @Override
  49. public String toString() {
  50. return "BriefWork{" +
  51. "typeName='" + typeName + '\'' +
  52. ", adCode='" + adCode + '\'' +
  53. ", adName='" + adName + '\'' +
  54. ", code='" + code + '\'' +
  55. ", name='" + name + '\'' +
  56. ", orgs=" + orgs +
  57. ", group=" + group +
  58. ", pers=" + pers +
  59. ", pros=" + pros +
  60. ", country=" + country +
  61. ", rect=" + rect +
  62. ", pblm=" + pblm +
  63. ", pblmOne=" + pblmOne +
  64. ", pblmTwo=" + pblmTwo +
  65. ", pblmThree=" + pblmThree +
  66. ", pblmFour=" + pblmFour +
  67. '}';
  68. }
  69. public int getPblmFour() {
  70. return pblmFour;
  71. }
  72. public void setPblmFour(int pblmFour) {
  73. this.pblmFour = pblmFour;
  74. }
  75. public String getAdCode() {
  76. return adCode;
  77. }
  78. public void setAdCode(String adCode) {
  79. this.adCode = adCode;
  80. }
  81. public String getAdName() {
  82. return adName;
  83. }
  84. public void setAdName(String adName) {
  85. this.adName = adName;
  86. }
  87. public String getCode() {
  88. return code;
  89. }
  90. public void setCode(String code) {
  91. this.code = code;
  92. }
  93. public String getName() {
  94. return name;
  95. }
  96. public void setName(String name) {
  97. this.name = name;
  98. }
  99. public int getOrgs() {
  100. return orgs;
  101. }
  102. public void setOrgs(int orgs) {
  103. this.orgs = orgs;
  104. }
  105. public int getGroup() {
  106. return group;
  107. }
  108. public void setGroup(int group) {
  109. this.group = group;
  110. }
  111. public int getPers() {
  112. return pers;
  113. }
  114. public void setPers(int pers) {
  115. this.pers = pers;
  116. }
  117. public int getPros() {
  118. return pros;
  119. }
  120. public void setPros(int pros) {
  121. this.pros = pros;
  122. }
  123. public int getCountry() {
  124. return country;
  125. }
  126. public void setCountry(int country) {
  127. this.country = country;
  128. }
  129. public int getRect() {
  130. return rect;
  131. }
  132. public void setRect(int rect) {
  133. this.rect = rect;
  134. }
  135. public int getPblm() {
  136. return pblm;
  137. }
  138. public void setPblm(int pblm) {
  139. this.pblm = pblm;
  140. }
  141. public int getPblmOne() {
  142. return pblmOne;
  143. }
  144. public void setPblmOne(int pblmOne) {
  145. this.pblmOne = pblmOne;
  146. }
  147. public int getPblmTwo() {
  148. return pblmTwo;
  149. }
  150. public void setPblmTwo(int pblmTwo) {
  151. this.pblmTwo = pblmTwo;
  152. }
  153. public int getPblmThree() {
  154. return pblmThree;
  155. }
  156. public void setPblmThree(int pblmThree) {
  157. this.pblmThree = pblmThree;
  158. }
  159. public String getTypeName() {
  160. return typeName;
  161. }
  162. public void setTypeName(String typeName) {
  163. this.typeName = typeName;
  164. }
  165. }