DepCountBo.java 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.goafanti.admin.bo;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. public class DepCountBo {
  5. private String id;
  6. private String name;
  7. private Integer userCount;
  8. private Integer firstInterviewCount;
  9. private Integer receiveCount;
  10. private Integer completeCount;
  11. private Integer signCount;
  12. private Integer channelCount;
  13. private Integer newCount;
  14. private Integer transferCount;
  15. private Integer channelNewCount;
  16. private Integer channelCompleteCount;
  17. /** 一般客戶 */
  18. private Integer generalCount;
  19. /** 私有客戶 */
  20. private Integer intentionCount;
  21. /** 重点客户 */
  22. private Integer keynoteCount;
  23. private List<DepCountBo> list;
  24. private List<AdminCustomerBo> aList;
  25. public Integer getFirstInterviewCount() {
  26. return firstInterviewCount;
  27. }
  28. public void setFirstInterviewCount(Integer firstInterviewCount) {
  29. this.firstInterviewCount = firstInterviewCount;
  30. }
  31. public Integer getGeneralCount() {
  32. return generalCount;
  33. }
  34. public void setGeneralCount(Integer generalCount) {
  35. this.generalCount = generalCount;
  36. }
  37. public Integer getIntentionCount() {
  38. return intentionCount;
  39. }
  40. public void setIntentionCount(Integer intentionCount) {
  41. this.intentionCount = intentionCount;
  42. }
  43. public Integer getKeynoteCount() {
  44. return keynoteCount;
  45. }
  46. public void setKeynoteCount(Integer keynoteCount) {
  47. this.keynoteCount = keynoteCount;
  48. }
  49. public Integer getTransferCount() {
  50. return transferCount;
  51. }
  52. public void setTransferCount(Integer transferCount) {
  53. this.transferCount = transferCount;
  54. }
  55. public DepCountBo() {
  56. userCount = 0;
  57. receiveCount = 0;
  58. completeCount = 0;
  59. signCount = 0;
  60. channelCount = 0;
  61. newCount = 0;
  62. channelCompleteCount = 0;
  63. channelNewCount = 0;
  64. transferCount=0;
  65. list=new ArrayList<>();
  66. aList=new ArrayList<>();
  67. }
  68. public Integer getSignCount() {
  69. return signCount;
  70. }
  71. public void setSignCount(Integer signCount) {
  72. this.signCount = signCount;
  73. }
  74. public Integer getChannelCount() {
  75. return channelCount;
  76. }
  77. public void setChannelCount(Integer channelCount) {
  78. this.channelCount = channelCount;
  79. }
  80. public Integer getNewCount() {
  81. return newCount;
  82. }
  83. public void setNewCount(Integer newCount) {
  84. this.newCount = newCount;
  85. }
  86. public Integer getChannelNewCount() {
  87. return channelNewCount;
  88. }
  89. public void setChannelNewCount(Integer channelNewCount) {
  90. this.channelNewCount = channelNewCount;
  91. }
  92. public Integer getChannelCompleteCount() {
  93. return channelCompleteCount;
  94. }
  95. public void setChannelCompleteCount(Integer channelCompleteCount) {
  96. this.channelCompleteCount = channelCompleteCount;
  97. }
  98. public String getId() {
  99. return id;
  100. }
  101. public void setId(String id) {
  102. this.id = id;
  103. }
  104. public String getName() {
  105. return name;
  106. }
  107. public void setName(String name) {
  108. this.name = name;
  109. }
  110. public Integer getUserCount() {
  111. return userCount;
  112. }
  113. public void setUserCount(Integer userCount) {
  114. this.userCount = userCount;
  115. }
  116. public Integer getReceiveCount() {
  117. return receiveCount;
  118. }
  119. public void setReceiveCount(Integer receiveCount) {
  120. this.receiveCount = receiveCount;
  121. }
  122. public Integer getCompleteCount() {
  123. return completeCount;
  124. }
  125. public void setCompleteCount(Integer completeCount) {
  126. this.completeCount = completeCount;
  127. }
  128. public List<DepCountBo> getList() {
  129. return list;
  130. }
  131. public void setList(List<DepCountBo> list) {
  132. this.list = list;
  133. }
  134. public List<AdminCustomerBo> getaList() {
  135. return aList;
  136. }
  137. public void setaList(List<AdminCustomerBo> aList) {
  138. this.aList = aList;
  139. }
  140. }