Browse Source

新增有效数概念

anderx 4 months ago
parent
commit
07ffcc7e83

+ 10 - 0
src/main/java/com/goafanti/admin/bo/AdminCustomerBo.java

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

+ 2 - 0
src/main/java/com/goafanti/admin/service/impl/AdminServiceImpl.java

@@ -461,6 +461,8 @@ public class AdminServiceImpl extends BaseMybatisDao<AdminMapper> implements Adm
 						admin.setIntentionCount(user.getIntentionCount());
 						admin.setKeynoteCount(user.getKeynoteCount());
 						admin.setGeneralCount(user.getGeneralCount());
+
+						admin.setPrivateCount(user.getPrivateCount());
 						break;
 					}
 				}