@@ -33,6 +33,7 @@
SELECT A.* FROM pan_fosterwx_wxfriend AS A
LEFT JOIN (SELECT friend_id FROM pan_fosterwx_mobile_wxfriend GROUP BY friend_id) AS B ON A.id = B.friend_id
WHERE B.friend_id IS null
+ and A.status = 1
</select>
<select id="getCanBindFriendList" resultType="com.mokamrp.privates.mapper.pangu.pojo.FosterwxWxfriend">
@@ -109,7 +109,7 @@ public class FosterwxMobileWxfriendServiceImpl extends ServiceImpl<FosterwxMobil
* @return
*/
public List<FosterwxWxfriend> getCanBindFriendList() {
- List<FosterwxWxfriend> list = fosterwxMobileWxfriendMapper.getCanSwtichFriendList();
+ List<FosterwxWxfriend> list = fosterwxMobileWxfriendMapper.getCanBindFriendList();
return list;
}