提交 aeeca1e5 作者: xiaowang

数据看板bug修复

上级 5df605ea
...@@ -470,10 +470,13 @@ ...@@ -470,10 +470,13 @@
LIMIT #{pageNo}, #{pageSize} LIMIT #{pageNo}, #{pageSize}
</select> </select>
<select id="getJoinStoreCount" resultType="java.lang.Integer"> <select id="getJoinStoreCount" resultType="java.lang.Integer">
select count(*) SELECT count(*)
from user_apply_tag FROM user_apply_tag ua
where is_deleted = 0 INNER JOIN cooperation_tag ct ON ua.cooperation_tag_id = ct.id
and apply_status = 1 INNER JOIN company_member cm ON cm.user_account_id = ua.user_account_id
INNER JOIN company_info ci ON cm.company_info_id = ci.id
WHERE ua.is_deleted = 0
AND ua.apply_status = 1
</select> </select>
<select id="getStoreCountByType" resultType="java.lang.Integer"> <select id="getStoreCountByType" resultType="java.lang.Integer">
select count(*) select count(*)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论