From 17a767a89456e605df594125c7bebbc62f17044f Mon Sep 17 00:00:00 2001 From: Jay <csj123456> Date: 星期四, 06 三月 2025 09:52:43 +0800 Subject: [PATCH] 增加累积值标识是否为空的判断 --- iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml | 19 ++++++++++++++----- 1 files changed, 14 insertions(+), 5 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 e9d9a3e..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 @@ -18,13 +18,22 @@ ) t <where> <if test="params.obj != null and params.obj != ''"> - and t.obj = #{obj} + and t.obj = #{params.obj} </if> - <if test="params.startTime != null and params.startTime != ''"> - and t.time >= #{startTime} + <if test="params.type != null and params.type != ''"> + and t.type = #{params.type} </if> - <if test="params.endTime != null and params.endTime != ''"> - and t.time <= #{endTime} + <if test="params.startTime != null"> + and t.time >= #{params.startTime} + </if> + <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