package com.hxzk.gps.controller.System;
|
|
import cn.dev33.satoken.annotation.SaCheckLogin;
|
import com.hxzk.gps.controller.System.TableSearchResult.TableSearchResult;
|
import com.hxzk.gps.result.ResultTable;
|
import com.hxzk.gps.service.System.TbSystemOperationLogService;
|
import com.hxzk.gps.service.Tag.TbTagService;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Controller;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 前端控制器
|
* 系统管理
|
* 操作日志
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-12
|
*/
|
@RestController
|
@RequestMapping("/System")
|
public class TbSystemOperationLogController {
|
@Autowired
|
private TbSystemOperationLogService systemOperationLogService;
|
@SaCheckLogin
|
@ApiOperation(value = "平台操作日志列表接口", notes = "该接口提供了平台操作日志列表查询功能")
|
@PostMapping("FindSystemLogInfo")
|
public ResultTable FindSystemLogInfo(@RequestBody TableSearchResult tableSearchResult){
|
return systemOperationLogService.FindSystemLogInfo(tableSearchResult);
|
}
|
}
|