fix:修复书签导入失败bug

This commit is contained in:
fanxb 2022-03-29 21:54:31 +08:00
parent f536f4e0b2
commit 5a2f3da51a

View File

@ -13,7 +13,7 @@
<select id="selectIdByUserIdAndNameAndPath" resultType="java.lang.Integer">
select bookmarkId
from bookmark
where userId = #{userId} and path = #{path} and name = #{name};
where userId = #{userId} and path = #{path} and name = #{name} limit 1;
</select>
<select id="selectMaxSort" resultType="java.lang.Integer">