查询岗位列表-返回附件信息

This commit is contained in:
sh
2025-12-03 16:15:15 +08:00
parent 5f76945039
commit 6adda93d5d
3 changed files with 49 additions and 0 deletions

View File

@@ -49,4 +49,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
</update>
<select id="selectFileListByBussinessIds" resultMap="FileResult">
<include refid="selectFileVo"/>
<where> del_flag = '0'
<if test="longs != null and longs.size() > 0">
and bussinessid in (
<foreach collection="longs" item="oldId" separator=",">
#{oldId}
</foreach>
)
</if>
</where>
</select>
</mapper>