瀏覽代碼

Merge branch 'feature-bieao' of lift-manager/lift-server into develop

bieao 5 年之前
父節點
當前提交
f37aff018e
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      lift-business-service/src/main/resources/mapper/project/ProjectUserMapper.xml

+ 4 - 4
lift-business-service/src/main/resources/mapper/project/ProjectUserMapper.xml

@@ -42,11 +42,11 @@
 		FROM project_user pu
 			 LEFT JOIN user_info ui ON pu.user_id = ui.user_id
 		WHERE 1=1
-		<if test="id!=null and id!=''">
-			AND project_id = #{id,jdbcType=BIGINT}
+		<if test="request.id!=null and request.id!=''">
+			AND project_id = #{request.id,jdbcType=BIGINT}
 		</if>
-		<if test="mtCompanyId!=null and mtCompanyId!=''">
-			AND mt_company_id = #{mtCompanyId,jdbcType=BIGINT}
+		<if test="request.mtCompanyId!=null and request.mtCompanyId!=''">
+			AND mt_company_id = #{request.mtCompanyId,jdbcType=BIGINT}
 		</if>
 	</select>