yfh hace 4 días
padre
commit
a942f8969d

+ 2 - 2
fs-service-system/src/main/resources/mapper/company/CompanyTagUserMapper.xml

@@ -138,14 +138,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         where fucu.company_user_id = #{params.companyUserId}
         <if test="params.tagIds != null and params.tagIds.size() > 0">
             and ft.tag_id in
-            <foreach collection="param.tagIds" item="item" separator="," open="(" close=")">
+            <foreach collection="params.tagIds" item="item" separator="," open="(" close=")">
                 #{item}
             </foreach>
         </if>
 
         <if test="params.projectIds != null and params.projectIds.size() > 0">
             and fucu.project_id in
-            <foreach collection="param.projectIds" item="item" separator="," open="(" close=")">
+            <foreach collection="params.projectIds" item="item" separator="," open="(" close=")">
                 #{item}
             </foreach>
         </if>