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

This commit is contained in:
段冬梅
2019-02-20 18:02:17 +08:00
parent 220b3be2b0
commit a2f311f18c
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>