This commit is contained in:
zhangchenbiao
2024-05-21 10:41:51 +08:00
parent 930649c479
commit 3182f050af
5 changed files with 42 additions and 2 deletions

View File

@@ -521,5 +521,17 @@
</if>
</select>
<select id="getLineMobile" resultMap="BaseResultMap">
select
id, mobile
from
xfsg_line_info
where
deleted = 0 and id in
<foreach collection="lineIds" item="lineId" open="(" separator="," close=")" >
#{lineId}
</foreach>
</select>
</mapper>