selectAllUserDataBo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package com.goafanti.admin.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. public class selectAllUserDataBo {
  4. @Excel(name = "部门名称")
  5. private String depName;
  6. @Excel(name = "管理员名称")
  7. private String name;
  8. @Excel(name = "日客户")
  9. private Integer dayCustomer;
  10. @Excel(name = "日面谈")
  11. private Integer dayMeet;
  12. @Excel(name = "周客户")
  13. private Integer weekCustomer;
  14. @Excel(name = "周面谈")
  15. private Integer weekMeet;
  16. @Excel(name = "月客户")
  17. private Integer monthCustomer;
  18. @Excel(name = "月面谈")
  19. private Integer monthMeet;
  20. @Excel(name = "年客户")
  21. private Integer yearCustomer;
  22. @Excel(name = "年面谈")
  23. private Integer yearMeet;
  24. public String getDepName() {
  25. return depName;
  26. }
  27. public void setDepName(String depName) {
  28. this.depName = depName;
  29. }
  30. public String getName() {
  31. return name;
  32. }
  33. public void setName(String name) {
  34. this.name = name;
  35. }
  36. public Integer getDayCustomer() {
  37. return dayCustomer;
  38. }
  39. public void setDayCustomer(Integer dayCustomer) {
  40. this.dayCustomer = dayCustomer;
  41. }
  42. public Integer getDayMeet() {
  43. return dayMeet;
  44. }
  45. public void setDayMeet(Integer dayMeet) {
  46. this.dayMeet = dayMeet;
  47. }
  48. public Integer getWeekCustomer() {
  49. return weekCustomer;
  50. }
  51. public void setWeekCustomer(Integer weekCustomer) {
  52. this.weekCustomer = weekCustomer;
  53. }
  54. public Integer getWeekMeet() {
  55. return weekMeet;
  56. }
  57. public void setWeekMeet(Integer weekMeet) {
  58. this.weekMeet = weekMeet;
  59. }
  60. public Integer getMonthCustomer() {
  61. return monthCustomer;
  62. }
  63. public void setMonthCustomer(Integer monthCustomer) {
  64. this.monthCustomer = monthCustomer;
  65. }
  66. public Integer getMonthMeet() {
  67. return monthMeet;
  68. }
  69. public void setMonthMeet(Integer monthMeet) {
  70. this.monthMeet = monthMeet;
  71. }
  72. public Integer getYearCustomer() {
  73. return yearCustomer;
  74. }
  75. public void setYearCustomer(Integer yearCustomer) {
  76. this.yearCustomer = yearCustomer;
  77. }
  78. public Integer getYearMeet() {
  79. return yearMeet;
  80. }
  81. public void setYearMeet(Integer yearMeet) {
  82. this.yearMeet = yearMeet;
  83. }
  84. }