package com.hxzk.gps.controller.Track;
|
|
import cn.dev33.satoken.annotation.SaCheckLogin;
|
|
import com.hxzk.gps.controller.Track.dto.TableSearchResult.TableGpsTrackSearchResult;
|
import com.hxzk.gps.result.ResultTable;
|
import com.hxzk.gps.service.Loragateway.TbLoragatewayService;
|
import com.hxzk.gps.service.Track.TbGpsTrackService;
|
import com.hxzk.gps.service.Track.TbTrackService;
|
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;
|
|
/**
|
* <p>
|
* 前端控制器
|
* 轨迹管理
|
* </p>
|
*
|
* @author YuZhiTong
|
* @since 2025-05-26
|
*/
|
@RestController
|
@RequestMapping("/GpsTrack")
|
public class TbGpsTrackController {
|
@Autowired
|
private TbGpsTrackService GpsTrackService;
|
@SaCheckLogin
|
@ApiOperation(value = "平台轨迹列表接口", notes = "该接口提供了平台轨迹信息列表查询功能")
|
@PostMapping("FindGpsTrackInfo")
|
public ResultTable FindGpsTrackInfo(@RequestBody TableGpsTrackSearchResult tableGpsTrackSearchResult){
|
return GpsTrackService.FindGpsTrackInfo(tableGpsTrackSearchResult);
|
}
|
}
|