swagger日志查询设置默认不显示查询类日志

This commit is contained in:
RenKaiGe-Office
2018-08-08 15:04:09 +08:00
parent 1a729ee973
commit c7df6708a2
2 changed files with 6 additions and 1 deletions

View File

@@ -50,6 +50,11 @@
<if test="exception != null and exception != ''">
AND a.exception_Info!=''
</if>
<!-- 默认不显示查询类日志,日志量太大,如果显示在界面选择操作行为即可 -->
<if test="opAction == null or opAction == ''">
AND a.opAction!=4
</if>
<if test="opAction != null and opAction != ''">
AND a.opAction=#{opAction}
</if>