浏览代码

Merge branch 'cygx_12.0' into debug

ziwen 1 年之前
父节点
当前提交
56b74d7e88
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      models/cygx_yanxuan_special_user.go

+ 2 - 2
models/cygx_yanxuan_special_user.go

@@ -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
 }