Sfoglia il codice sorgente

app端用户列表bug修改

别傲 5 anni fa
parent
commit
dba22e3f43

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