fix: 日志分页列表查询报错问题修复
This commit is contained in:
@@ -7,18 +7,18 @@
|
|||||||
<!-- 日志分页列表 -->
|
<!-- 日志分页列表 -->
|
||||||
<select id="listPagedLogs" resultType="com.youlai.system.model.vo.LogPageVO">
|
<select id="listPagedLogs" resultType="com.youlai.system.model.vo.LogPageVO">
|
||||||
SELECT
|
SELECT
|
||||||
id,
|
t1.id,
|
||||||
module,
|
t1.module,
|
||||||
content,
|
t1.content,
|
||||||
request_uri,
|
t1.request_uri,
|
||||||
method,
|
t1.method,
|
||||||
ip,
|
t1.ip,
|
||||||
concat(province, city) AS region,
|
CONCAT(t1.province, t1.city) AS region,
|
||||||
execution_time,
|
t1.execution_time,
|
||||||
browser,
|
t1.browser,
|
||||||
browser_version,
|
t1.browser_version,
|
||||||
os,
|
t1.os,
|
||||||
create_time,
|
t1.create_time,
|
||||||
t2.nickname AS operator
|
t2.nickname AS operator
|
||||||
FROM
|
FROM
|
||||||
sys_log t1
|
sys_log t1
|
||||||
|
|||||||
Reference in New Issue
Block a user