From 7972601aa993d1296f198ca16fae73c7988c0177 Mon Sep 17 00:00:00 2001
From: zenglf <18502938215@163.com>
Date: 星期五, 10 十一月 2023 11:39:32 +0800
Subject: [PATCH] Merge branch 'develop'
---
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/PredictiveWorkPlanParameterMapper.xml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/PredictiveWorkPlanParameterMapper.xml b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/PredictiveWorkPlanParameterMapper.xml
index 88b8fe2..0428ce5 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/PredictiveWorkPlanParameterMapper.xml
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/mapper/xml/PredictiveWorkPlanParameterMapper.xml
@@ -56,8 +56,8 @@
FROM
mom_eam_predictive_work_plan_parameter t1
WHERE t1.del_flag = 0
- <if test="params.planId != null and params.planId != ''">
- and t1.work_plan_id = #{params.planId}
+ <if test="predictiveWorkPlanId != null and predictiveWorkPlanId != ''">
+ and t1.work_plan_id = #{predictiveWorkPlanId}
</if>
ORDER BY t1.create_time desc
</select>
@@ -67,10 +67,10 @@
t1.CollectTime collectTime,
t1.${parameterCode} actualValue
FROM
- [${saveTableName}] t1
+ ${saveTableName} t1
WHERE
t1.${parameterCode} <![CDATA[ < ]]> #{lowerLimitValue}
- OR t1.${parameterCode} > #{upperLimitValue}
+ OR t1.${parameterCode} > #{upperLimitValue}
ORDER BY
t1.CollectTime DESC
</select>
--
Gitblit v1.9.3