沙钢智慧能源系统后端代码
liriming
2024-10-14 ccf75464534965c47866449b2b4e457a6dadede9
提交 | 用户 | 时间
516ef4 1 <?xml version="1.0" encoding="UTF-8"?>
L 2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3
4 <mapper namespace="com.iailab.module.shasteel.job.dao.ScheduleJobDao">
5     
6     <!-- 批量更新状态 -->
7     <update id="updateBatch"> 
8         update schedule_job set status = #{status} where id in
9         <foreach item="id" collection="ids"  open="(" separator="," close=")">
10             #{id}
11         </foreach>
12     </update>
13
14 </mapper>