From e8a215989fdd9dd6f24f46bf51f60174a1088b5b Mon Sep 17 00:00:00 2001
From: zenglf <18502938215@163.com>
Date: 星期三, 18 十月 2023 09:32:30 +0800
Subject: [PATCH] 操作证管理 操作证申请、操作证计分规则提交
---
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