|
@@ -12,6 +12,8 @@ public class AdminCustomerBo {
|
|
|
private String depName;
|
|
private String depName;
|
|
|
@Excel( name = "私有数",width = 12)
|
|
@Excel( name = "私有数",width = 12)
|
|
|
private Integer userCount;
|
|
private Integer userCount;
|
|
|
|
|
+ @Excel( name = "有效数",width = 12)
|
|
|
|
|
+ private Integer privateCount;
|
|
|
@Excel( name = "有效面谈数",width = 12)
|
|
@Excel( name = "有效面谈数",width = 12)
|
|
|
private Integer firstInterviewCount;
|
|
private Integer firstInterviewCount;
|
|
|
@Excel( name = "渠道数",width = 12)
|
|
@Excel( name = "渠道数",width = 12)
|
|
@@ -37,6 +39,14 @@ public class AdminCustomerBo {
|
|
|
@Excel( name = "重点客户",width = 12)
|
|
@Excel( name = "重点客户",width = 12)
|
|
|
private Integer keynoteCount;
|
|
private Integer keynoteCount;
|
|
|
|
|
|
|
|
|
|
+ public Integer getPrivateCount() {
|
|
|
|
|
+ return privateCount;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPrivateCount(Integer privateCount) {
|
|
|
|
|
+ this.privateCount = privateCount;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public Integer getFirstInterviewCount() {
|
|
public Integer getFirstInterviewCount() {
|
|
|
return firstInterviewCount;
|
|
return firstInterviewCount;
|
|
|
}
|
|
}
|