AdminCustomerBo.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. package com.goafanti.admin.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. public class AdminCustomerBo {
  4. private String aid;
  5. @Excel( name = "名称")
  6. private String aName;
  7. private String depId;
  8. @Excel( name = "部门")
  9. private String depName;
  10. /** 私有数 */
  11. @Excel( name = "私有数",width = 12)
  12. private Integer userCount;
  13. @Excel( name = "有效面谈",width = 12)
  14. private Integer firstInterviewCount;
  15. /** 渠道数 */
  16. @Excel( name = "渠道数",width = 12)
  17. private Integer channelCount;
  18. /** 签单数 */
  19. @Excel( name = "签单数",width = 12)
  20. private Integer signCount;
  21. /** 私有新增数 */
  22. @Excel( name = "私有新增数",width = 12)
  23. private Integer newCount;
  24. /** 渠道新增数 */
  25. @Excel( name = "渠道新增数",width = 12)
  26. private Integer channelNewCount;
  27. /** 私有面谈数 */
  28. @Excel( name = "私有面谈数",width = 12)
  29. private Integer completeCount;
  30. /** 渠道面谈数 */
  31. @Excel( name = "渠道面谈数",width = 12)
  32. private Integer channelCompleteCount;
  33. /** 私有领取数 */
  34. @Excel( name = "私有领取数",width = 12)
  35. private Integer receiveCount;
  36. /** 私有转交数 */
  37. @Excel( name = "私有转交数",width = 12)
  38. private Integer transferCount;
  39. /** 一般客戶 */
  40. @Excel( name = "一般客户",width = 12)
  41. private Integer generalCount;
  42. /** 意向客户 */
  43. @Excel( name = "意向客户",width = 12)
  44. private Integer intentionCount;
  45. /** 重点客户 */
  46. @Excel( name = "重点客户",width = 12)
  47. private Integer keynoteCount;
  48. public Integer getFirstInterviewCount() {
  49. return firstInterviewCount;
  50. }
  51. public void setFirstInterviewCount(Integer firstInterviewCount) {
  52. this.firstInterviewCount = firstInterviewCount;
  53. }
  54. public Integer getGeneralCount() {
  55. return generalCount;
  56. }
  57. public void setGeneralCount(Integer generalCount) {
  58. this.generalCount = generalCount;
  59. }
  60. public Integer getIntentionCount() {
  61. return intentionCount;
  62. }
  63. public void setIntentionCount(Integer intentionCount) {
  64. this.intentionCount = intentionCount;
  65. }
  66. public Integer getKeynoteCount() {
  67. return keynoteCount;
  68. }
  69. public void setKeynoteCount(Integer keynoteCount) {
  70. this.keynoteCount = keynoteCount;
  71. }
  72. public Integer getTransferCount() {
  73. return transferCount;
  74. }
  75. public void setTransferCount(Integer transferCount) {
  76. this.transferCount = transferCount;
  77. }
  78. public Integer getChannelCount() {
  79. return channelCount;
  80. }
  81. public void setChannelCount(Integer channelCount) {
  82. this.channelCount = channelCount;
  83. }
  84. public Integer getNewCount() {
  85. return newCount;
  86. }
  87. public void setNewCount(Integer newCount) {
  88. this.newCount = newCount;
  89. }
  90. public Integer getChannelNewCount() {
  91. return channelNewCount;
  92. }
  93. public void setChannelNewCount(Integer channelNewCount) {
  94. this.channelNewCount = channelNewCount;
  95. }
  96. public Integer getChannelCompleteCount() {
  97. return channelCompleteCount;
  98. }
  99. public void setChannelCompleteCount(Integer channelCompleteCount) {
  100. this.channelCompleteCount = channelCompleteCount;
  101. }
  102. public String getAid() {
  103. return aid;
  104. }
  105. public void setAid(String aid) {
  106. this.aid = aid;
  107. }
  108. public String getaName() {
  109. return aName;
  110. }
  111. public void setaName(String aName) {
  112. this.aName = aName;
  113. }
  114. public String getDepName() {
  115. return depName;
  116. }
  117. public void setDepName(String depName) {
  118. this.depName = depName;
  119. }
  120. public Integer getUserCount() {
  121. return userCount;
  122. }
  123. public void setUserCount(Integer userCount) {
  124. this.userCount = userCount;
  125. }
  126. public Integer getReceiveCount() {
  127. return receiveCount;
  128. }
  129. public void setReceiveCount(Integer receiveCount) {
  130. this.receiveCount = receiveCount;
  131. }
  132. public Integer getCompleteCount() {
  133. return completeCount;
  134. }
  135. public void setCompleteCount(Integer completeCount) {
  136. this.completeCount = completeCount;
  137. }
  138. public String getDepId() {
  139. return depId;
  140. }
  141. public void setDepId(String depId) {
  142. this.depId = depId;
  143. }
  144. public Integer getSignCount() {
  145. return signCount;
  146. }
  147. public void setSignCount(Integer signCount) {
  148. this.signCount = signCount;
  149. }
  150. }