zhitong.yu
7 天以前 7fc9c42987a13c1d8d2159591a5803e70518827f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.hxzk.gps.controller.RtkAnchor;
 
import cn.dev33.satoken.annotation.SaCheckLogin;
import com.hxzk.gps.controller.RtkAnchor.dto.TableSearchResult.TableSearchResult;
import com.hxzk.gps.result.ResultTable;
import com.hxzk.gps.service.RtkAnchor.TbRtkanchorService;
import io.swagger.annotations.Api;
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.web.bind.annotation.RestController;
 
/**
 * <p>
 *  前端控制器
 * </p>
 *
 * @author YuZhiTong
 * @since 2025-07-22
 */
@RestController
@RequestMapping("/RtkAnchor")
@Api(tags="差分基站管理")
public class TbRtkanchorController {
    @Autowired
    private TbRtkanchorService achorService;
    @SaCheckLogin
    @ApiOperation(value = "平台基站列表接口", notes = "该接口提供了平台基站信息列表查询功能")
    @PostMapping("FindRtkAnchorInfo")
    public ResultTable FindRtkAnchorInfo(@RequestBody TableSearchResult TableSearchResult){
        return achorService.FindRtkAnchorInfo(TableSearchResult);
    }
 
}