refactor: 日志列表显示优化

This commit is contained in:
Ray.Hao
2024-06-28 18:00:28 +08:00
parent 3c4376a50f
commit 3b0a4e93a6
2 changed files with 3 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ import org.springframework.web.bind.annotation.*;
* 日志控制层 * 日志控制层
* *
* @author Ray * @author Ray
* @since 2022/10/16 * @since 2.10.0
*/ */
@Tag(name = "08.日志接口") @Tag(name = "08.日志接口")
@RestController @RestController

View File

@@ -13,10 +13,9 @@
t1.request_uri, t1.request_uri,
t1.method, t1.method,
t1.ip, t1.ip,
CONCAT(t1.province, t1.city) AS region, CONCAT(t1.province," ", t1.city) AS region,
t1.execution_time, t1.execution_time,
t1.browser, CONCAT(t1.browser_name," ", t1.browser_version) AS browser,
t1.browser_version,
t1.os, t1.os,
t1.create_time, t1.create_time,
t2.nickname AS operator t2.nickname AS operator