Browse Source

渠道列表新增简介

anderx 3 years ago
parent
commit
49f9275a07

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

@@ -2193,7 +2193,7 @@ inner join(
 		select
 		a.id id,a.aid,a.nickname name,b.name aName,dg1.name as province,dg2.name as city,
 		dg3.name as area,date_format(um.last_sign_time,'%Y-%m-%d %H:%i:%S') lastSignTime,
-		date_format(a.transfer_time,'%Y-%m-%d %H:%i:%S') as transferTime,
+		date_format(a.transfer_time,'%Y-%m-%d %H:%i:%S') as transferTime,a.introduction ,
 		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 ,um.channel_type type
 		from user a left join admin b on a.aid=b.id left join organization_identity d on a.id = d.uid

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

@@ -22,6 +22,11 @@ public class OutChannelListBo {
      * 创建时间
      */
     private String createTime;
+
+    /**
+     * 简介
+     */
+    private String introduction;
     /*客户转换时间*/
     private String transferTime;
     /*最后跟进时间*/
@@ -29,6 +34,14 @@ public class OutChannelListBo {
     /*剩余天数*/
     private String RemainingDays;
 
+    public String getIntroduction() {
+        return introduction;
+    }
+
+    public void setIntroduction(String introduction) {
+        this.introduction = introduction;
+    }
+
     public String getAid() {
         return aid;
     }