DbQueryUserByGenderDto.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. *
  3. */
  4. package cn.com.lzt.dbquery.dto;
  5. import org.jeecgframework.poi.excel.annotation.Excel;
  6. /**
  7. * @author xzx
  8. *
  9. * 2019年7月31日
  10. *
  11. */
  12. public class DbQueryUserByGenderDto {
  13. /**
  14. * 项目管理处id
  15. */
  16. private String pid;
  17. /**
  18. * 项目名称
  19. */
  20. @Excel(name="项目名称",width=35)
  21. private String departname;
  22. /**
  23. * 总人数
  24. */
  25. @Excel(name="项目在职人数",width=35,isStatistics=true)
  26. private int total;
  27. @Excel(name="男",width=35,isStatistics=true)
  28. private int maleCount;
  29. @Excel(name="女",width=35,isStatistics=true)
  30. private int femaleCount;
  31. // 入职月份
  32. private String inMonth;
  33. public String getInMonth() {
  34. return inMonth;
  35. }
  36. public void setInMonth(String inMonth) {
  37. this.inMonth = inMonth;
  38. }
  39. public String getPid() {
  40. return pid;
  41. }
  42. public void setPid(String pid) {
  43. this.pid = pid;
  44. }
  45. public String getDepartname() {
  46. return departname;
  47. }
  48. public void setDepartname(String departname) {
  49. this.departname = departname;
  50. }
  51. public int getTotal() {
  52. return total;
  53. }
  54. public void setTotal(int total) {
  55. this.total = total;
  56. }
  57. public int getMaleCount() {
  58. return maleCount;
  59. }
  60. public void setMaleCount(int maleCount) {
  61. this.maleCount = maleCount;
  62. }
  63. public int getFemaleCount() {
  64. return femaleCount;
  65. }
  66. public void setFemaleCount(int femaleCount) {
  67. this.femaleCount = femaleCount;
  68. }
  69. }