package com.hxzk.gps.controller.Log; import cn.dev33.satoken.annotation.SaCheckLogin; import com.hxzk.gps.controller.Log.dto.TableSearchResult.TableFzLogSearchResult; import com.hxzk.gps.result.ResultTable; import com.hxzk.gps.service.Log.TbFzlogService; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RestController; /** *
* 前端控制器 * 防撞日志 *
* * @author YuZhiTong * @since 2025-05-27 */ @RestController @RequestMapping("/FzLog") public class TbFzlogController { @Autowired TbFzlogService fzlogService; @SaCheckLogin @ApiOperation(value = "平台防撞日志列表接口", notes = "该接口提供了平台防撞日志列表查询功能") @PostMapping("FindFzLogInfo") public ResultTable FindFzLogInfo(@RequestBody TableFzLogSearchResult TableSearchResult){ return fzlogService.FindFzLogInfo(TableSearchResult); } }