Commit 3d23b517 authored by zhangsen's avatar zhangsen

巡检点导入功能添加 装备对象和巡检项 遗漏提交

parent e4bc5c11
......@@ -461,4 +461,16 @@
</foreach>
</delete>
<select id="queryCustomInputItemByCodes" resultType="com.yeejoin.amos.patrol.business.vo.PointInputItemVo">
SELECT * FROM p_input_item
<where>
is_delete = '0'
<if test="inputItemNos != null and inputItemNos.size() > 0">
AND item_no IN
<foreach collection="inputItemNos" item="item" index="index" separator="," open="(" close=")">
#{item}
</foreach>
</if>
</where>
</select>
</mapper>
\ No newline at end of file
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