|
@@ -75,8 +75,8 @@ func GetYanxuanSpecialAuthor(reqUserId, sysUserId int) (item *CygxYanxuanSpecial
|
|
|
( SELECT count( 1 ) FROM cygx_yanxuan_special_follow AS cf WHERE cf.follow_user_id =? AND cf.user_id = ? ) AS is_follow
|
|
|
FROM
|
|
|
cygx_yanxuan_special_author as a
|
|
|
- INNER JOIN wx_user AS u ON u.user_id = a.user_id
|
|
|
- INNER JOIN company AS c ON c.company_id = u.company_id WHERE a.user_id=? `
|
|
|
+ LEFT JOIN wx_user AS u ON u.user_id = a.user_id
|
|
|
+ LEFT JOIN company AS c ON c.company_id = u.company_id WHERE a.user_id=? `
|
|
|
err = o.Raw(sql, reqUserId, sysUserId, reqUserId).QueryRow(&item)
|
|
|
return
|
|
|
}
|