Browse Source

审核bug修复

wangtong 1 year ago
parent
commit
48e8df3ff6

+ 2 - 2
ruoyi-zdsz/src/main/resources/mapper/zdsz/ZEngineeringCivilMapper.xml

@@ -357,7 +357,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             and  update_info_time between #{beginTime[0]} and #{beginTime[1]}
         </if>
         <if test="p.createBy != null and p.createBy != ''">
-            and create_by like CONCAT(#{p.createBy},'%')
+            and c.create_by like CONCAT(#{p.createBy},'%')
         </if>
         <foreach collection="tableNames" item="name">
             union
@@ -432,7 +432,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
                 and  update_info_time between #{beginTime[0]} and #{beginTime[1]}
             </if>
             <if test="p.createBy != null and p.createBy != ''">
-                and create_by like CONCAT(#{p.createBy},'%')
+                and c.create_by like CONCAT(#{p.createBy},'%')
             </if>
         </foreach>
     </select>