1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-19 00:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

导出系统数据初步完成(可以输出到控制台)

This commit is contained in:
2022-04-18 23:08:08 +08:00
parent 883a245058
commit 93c499cb6e
3 changed files with 288 additions and 0 deletions

View File

@@ -294,4 +294,11 @@
left join book_info on user_book_favorites_relation.book_id = book_info.id
where user_book_favorites_relation.user_id = #{userId,jdbcType=INTEGER}
</select>
<select id="selectAll" resultMap="ResultMapWithBLOBs">
select
<include refid="Base_Column_List" />
,
<include refid="Blob_Column_List" />
from book_info
</select>
</mapper>