From b7919b3e9e362adc6b593df15eff3412a354c638 Mon Sep 17 00:00:00 2001
From: wente <329538422@qq.com>
Date: 星期日, 10 三月 2024 15:50:23 +0800
Subject: [PATCH] 新增框选拖拽

---
 modules/mainPart/src/main/resources/mapper/basicInfo/ParamDataAssignDao.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/mainPart/src/main/resources/mapper/basicInfo/ParamDataAssignDao.xml b/modules/mainPart/src/main/resources/mapper/basicInfo/ParamDataAssignDao.xml
index 8e0ba60..35e09c5 100644
--- a/modules/mainPart/src/main/resources/mapper/basicInfo/ParamDataAssignDao.xml
+++ b/modules/mainPart/src/main/resources/mapper/basicInfo/ParamDataAssignDao.xml
@@ -16,10 +16,10 @@
         LEFT JOIN param_data_assign b ON b.product_id = a.id
         <where>
             a.is_delete = 0
-            <if test="id!=null">
-                and a.pid =${id}
+            <if test="srcId!=null">
+                and a.pid =${srcId}
             </if>
-            <if test="id==null">
+            <if test="srcId==null">
                 and a.pid is null
             </if>
             <if test="whereSql!=null">

--
Gitblit v1.9.1