Browse Source

客户列表修改为创建时间倒序

anderx 1 year ago
parent
commit
f82c7a0aa5

+ 1 - 1
src/main/java/com/goafanti/common/mapper/UserMapperExt.xml

@@ -2243,7 +2243,7 @@ inner join(
 		date_format(a.create_time,'%Y-%m-%d %H:%i:%S') as createTime,
 		date_format(um.last_follow_time,'%Y-%m-%d %H:%i:%S') lastFollowTime ,
 		if(a.transfer_time < um.last_follow_time,um.last_follow_time,a.transfer_time) as orderTime,
-		um.channel_type type,
+		um.channel_type type,d.intended_project intendedProject,
 		ua.enterprise_count as enterpriseCount,
 		ua.channel_indicators channelIndicators,
 		ua.interview_distribution as interviewDistribution

+ 9 - 0
src/main/java/com/goafanti/customer/bo/OutChannelListBo.java

@@ -33,11 +33,20 @@ public class OutChannelListBo {
     private String lastFollowTime;
     /*剩余天数*/
     private String RemainingDays;
+    private String intendedProject;
 
     private Integer enterpriseCount;
     private String channelIndicators;
     private String interviewDistribution;
 
+    public String getIntendedProject() {
+        return intendedProject;
+    }
+
+    public void setIntendedProject(String intendedProject) {
+        this.intendedProject = intendedProject;
+    }
+
     public Integer getEnterpriseCount() {
         return enterpriseCount;
     }