修复客户端账号管理和SNAT策略导出选中配置出错BUG

(cherry picked from commit a2f311f18c)
This commit is contained in:
段冬梅
2019-02-20 10:02:17 +00:00
committed by 董晓燕
parent b935bad2d0
commit 69f993f40f
2 changed files with 2 additions and 2 deletions

View File

@@ -775,7 +775,7 @@
sys_user u on r.auditor_id = u.id
left join
request_info ri on r.request_id = ri.id
where a.CFG_ID in (${ids})
where r.CFG_ID in (${ids})
</select>
<select id="findPageByDnat" resultMap="dnatPolicyMap">

View File

@@ -167,6 +167,6 @@
FROM user_manage a
left join sys_user s on a.creator_id=s.id
left join sys_user e on a.editor_id=e.id
where a.CFG_ID in (${ids})
where a.id in (${ids})
</select>
</mapper>