From 27af54369eae2d6bda94d1dd3284208c3463a97f Mon Sep 17 00:00:00 2001 From: 潘志宝 <979469083@qq.com> Date: 星期三, 05 三月 2025 10:27:20 +0800 Subject: [PATCH] DllUtils sync run --- iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml b/iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml index 2dd0d4f..eea763b 100644 --- a/iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml +++ b/iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml @@ -29,6 +29,12 @@ <if test="params.endTime != null"> and t.time <= #{params.endTime} </if> + <if test="params.objList != null"> + and t.obj in + <foreach collection="params.objList" item="item" open="(" close=")" separator=","> + #{item} + </foreach> + </if> </where> order by t.time desc -- Gitblit v1.9.3