Commit 2bd108a5 by lili

修改bug

parent 07bafc67
...@@ -551,12 +551,15 @@ ...@@ -551,12 +551,15 @@
<result column="book_name" property="bookName" jdbcType="VARCHAR"/> <result column="book_name" property="bookName" jdbcType="VARCHAR"/>
</resultMap> </resultMap>
<select id="listGroupQrcodeBaseInfo" resultMap="GroupQrcodeMap" parameterType="list"> <select id="listGroupQrcodeBaseInfo" resultMap="GroupQrcodeMap" parameterType="list">
select SELECT
weixin_group_id, group_name, book_name weixin_group_id, group_name, book_name
from FROM
book_group_qrcode q book_group_qrcode q
join book_group_classify c on q.classify_id = c.id JOIN
LEFT JOIN book b on c.book_id = b.BOOK_ID 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 = ")"> <foreach collection = "list" index="index" item = "item" open = "(" separator= "," close = ")">
#{item} #{item}
</foreach> </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