浏览代码

修复bug

yfh 3 天之前
父节点
当前提交
a942f8969d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      fs-service-system/src/main/resources/mapper/company/CompanyTagUserMapper.xml

+ 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>