DbQueryUserByEduDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /**
  2. *
  3. */
  4. package cn.com.lzt.dbquery.dto;
  5. /**
  6. * @author xzx
  7. *
  8. * 2019年7月31日
  9. *
  10. */
  11. public class DbQueryUserByEduDto {
  12. /**
  13. * 项目管理处id
  14. */
  15. private String pid;
  16. /**
  17. * 项目名称
  18. */
  19. private String departname;
  20. /**
  21. * 总人数
  22. */
  23. private int total;
  24. /**
  25. * 未知
  26. */
  27. private int unknownCount;
  28. /**
  29. * 无学历
  30. */
  31. private int wuxueliCount;
  32. /**
  33. * 小学
  34. */
  35. private int xiaoxueCount;
  36. /**
  37. * 初中
  38. */
  39. private int chuzhongCount;
  40. /**
  41. * 高中
  42. */
  43. private int gaozhongCount;
  44. /**
  45. * 大专
  46. */
  47. private int dazhuanCount;
  48. /**
  49. * 本科
  50. */
  51. private int benkeCount;
  52. /**
  53. * 硕士
  54. */
  55. private int shuoshiCount;
  56. /**
  57. * 博士
  58. */
  59. private int boshiCount;
  60. public int getUnknownCount() {
  61. return unknownCount;
  62. }
  63. public void setUnknownCount(int unknownCount) {
  64. this.unknownCount = unknownCount;
  65. }
  66. public int getWuxueliCount() {
  67. return wuxueliCount;
  68. }
  69. public void setWuxueliCount(int wuxueliCount) {
  70. this.wuxueliCount = wuxueliCount;
  71. }
  72. public String getPid() {
  73. return pid;
  74. }
  75. public void setPid(String pid) {
  76. this.pid = pid;
  77. }
  78. public String getDepartname() {
  79. return departname;
  80. }
  81. public void setDepartname(String departname) {
  82. this.departname = departname;
  83. }
  84. public int getXiaoxueCount() {
  85. return xiaoxueCount;
  86. }
  87. public void setXiaoxueCount(int xiaoxueCount) {
  88. this.xiaoxueCount = xiaoxueCount;
  89. }
  90. public int getChuzhongCount() {
  91. return chuzhongCount;
  92. }
  93. public void setChuzhongCount(int chuzhongCount) {
  94. this.chuzhongCount = chuzhongCount;
  95. }
  96. public int getGaozhongCount() {
  97. return gaozhongCount;
  98. }
  99. public void setGaozhongCount(int gaozhongCount) {
  100. this.gaozhongCount = gaozhongCount;
  101. }
  102. public int getDazhuanCount() {
  103. return dazhuanCount;
  104. }
  105. public void setDazhuanCount(int dazhuanCount) {
  106. this.dazhuanCount = dazhuanCount;
  107. }
  108. public int getBenkeCount() {
  109. return benkeCount;
  110. }
  111. public void setBenkeCount(int benkeCount) {
  112. this.benkeCount = benkeCount;
  113. }
  114. public int getShuoshiCount() {
  115. return shuoshiCount;
  116. }
  117. public void setShuoshiCount(int shuoshiCount) {
  118. this.shuoshiCount = shuoshiCount;
  119. }
  120. public int getBoshiCount() {
  121. return boshiCount;
  122. }
  123. public void setBoshiCount(int boshiCount) {
  124. this.boshiCount = boshiCount;
  125. }
  126. public int getTotal() {
  127. return total;
  128. }
  129. public void setTotal(int total) {
  130. this.total = total;
  131. }
  132. }