fix(系统管理): 组织日志按操作类型查询数据
--bug=1035355 --user=王旭 【系统管理】组织-日志,操作类型中除了增删改查部分类型无数据 https://www.tapd.cn/55049933/s/1461803
This commit is contained in:
parent
86a0a5cd2f
commit
d02b4273ec
|
@ -95,6 +95,7 @@
|
|||
#{caseId}
|
||||
</foreach>
|
||||
AND abandoned = FALSE
|
||||
AND status != 'UNDER_REVIEWED'
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
<if test="request.startTime != null and request.endTime != null">
|
||||
AND t.create_time BETWEEN #{request.startTime} AND #{request.endTime}
|
||||
</if>
|
||||
<if test="request.type != 'LOGOUT' and request.type !='LOGIN'">
|
||||
<if test="request.level != null and request.level != 'SYSTEM'">
|
||||
AND t.project_id <![CDATA[<>]]> 'SYSTEM'
|
||||
</if>
|
||||
|
@ -39,6 +40,7 @@
|
|||
#{organizationId}
|
||||
</foreach>
|
||||
</if>
|
||||
</if>
|
||||
<if test="request.type != null and request.type != ''">
|
||||
AND t.type = #{request.type}
|
||||
</if>
|
||||
|
|
Loading…
Reference in New Issue