修复日志接口
This commit is contained in:
parent
decd9863f2
commit
3c021a74c4
|
|
@ -19,7 +19,7 @@ import java.util.Map;
|
||||||
* 系统日志管理
|
* 系统日志管理
|
||||||
*/
|
*/
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/system/log")
|
@RequestMapping("/api/system/log")
|
||||||
public class SystemLogController {
|
public class SystemLogController {
|
||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
|
|
@ -32,7 +32,7 @@ public class SystemLogController {
|
||||||
* @param params 搜索参数
|
* @param params 搜索参数
|
||||||
* @return Object
|
* @return Object
|
||||||
*/
|
*/
|
||||||
@GetMapping("/api/operate")
|
@GetMapping("/operate")
|
||||||
public Object operate(@Validated PageParam pageParam, @RequestParam Map<String, String> params) {
|
public Object operate(@Validated PageParam pageParam, @RequestParam Map<String, String> params) {
|
||||||
PageResult<LogOperateVo> list = iSystemLogServer.operate(pageParam, params);
|
PageResult<LogOperateVo> list = iSystemLogServer.operate(pageParam, params);
|
||||||
return AjaxResult.success(list);
|
return AjaxResult.success(list);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue