anderx 1 год назад
Родитель
Сommit
df6568a921

+ 8 - 0
src/main/java/com/goafanti/common/mapper/UserMapper.xml

@@ -1876,5 +1876,13 @@
           and datediff(now(),if(u.transfer_time  < um.last_follow_time,um.last_follow_time,u.transfer_time))>30
     </select>
 
+    <select id="selectUserClueList" resultType="com.goafanti.customer.bo.OutUserClueBo">
+        select a.id,a.nickname ,b.contacts ,b.contact_mobile,c.name adminName,
+               a.clue_process clueProcess,a.clue_time clueTime
+        from `user` a left join organization_identity b on a.id =b.uid
+                      left join admin c on a.aid=c.id
+        where clue_status =1 and clue_process in (0,2)
+    </select>
+
 </mapper>
 

+ 5 - 0
src/main/java/com/goafanti/customer/bo/OutUserClueBo.java

@@ -0,0 +1,5 @@
+package com.goafanti.customer.bo;
+
+public class OutUserClueBo {
+
+}