Commit 2bd108a5 by lili

修改bug

parent 07bafc67
......@@ -551,12 +551,15 @@
<result column="book_name" property="bookName" jdbcType="VARCHAR"/>
</resultMap>
<select id="listGroupQrcodeBaseInfo" resultMap="GroupQrcodeMap" parameterType="list">
select
weixin_group_id, group_name, book_name
from
book_group_qrcode q
join book_group_classify c on q.classify_id = c.id
LEFT JOIN book b on c.book_id = b.BOOK_ID
SELECT
weixin_group_id, group_name, book_name
FROM
book_group_qrcode q
JOIN
book_group_classify c on q.classify_id = c.id
LEFT JOIN
book b on c.book_id = b.book_id
where weixin_group_id in
<foreach collection = "list" index="index" item = "item" open = "(" separator= "," close = ")">
#{item}
</foreach>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment