From 0a2a52fef46d09dd1c8fa452025605be26078ab5 Mon Sep 17 00:00:00 2001 From: weidong Date: Mon, 13 Nov 2023 13:53:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E7=94=A8=E4=BE=9D=E8=B5=96sec-beidou-?= =?UTF-8?q?rtcm-api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sec-beidou/pom.xml | 35 +++---------------- .../beidou/controller/TestController.java | 25 ------------- 2 files changed, 4 insertions(+), 56 deletions(-) delete mode 100644 sec-beidou/src/main/java/com/imdroid/beidou/controller/TestController.java diff --git a/sec-beidou/pom.xml b/sec-beidou/pom.xml index 928cb682..45932548 100644 --- a/sec-beidou/pom.xml +++ b/sec-beidou/pom.xml @@ -10,11 +10,12 @@ sec-beidou - 0.0.1-SNAPSHOT - beidou - beidou + jar + 8 + 8 + UTF-8 @@ -38,11 +39,6 @@ 1.4.3 - - org.springframework.boot - spring-boot-starter-validation - - com.baomidou mybatis-plus-boot-starter @@ -73,35 +69,12 @@ spring-security-test test - - io.netty - netty-all - 4.1.85.Final - com.alibaba fastjson 1.2.76 - - io.jsonwebtoken - jjwt - 0.9.1 - - - com.google.code.gson - gson - 2.9.1 - - - - - org.apache.httpcomponents - httpclient - 4.5.7 - - jakarta.validation diff --git a/sec-beidou/src/main/java/com/imdroid/beidou/controller/TestController.java b/sec-beidou/src/main/java/com/imdroid/beidou/controller/TestController.java deleted file mode 100644 index 03fa3508..00000000 --- a/sec-beidou/src/main/java/com/imdroid/beidou/controller/TestController.java +++ /dev/null @@ -1,25 +0,0 @@ -package com.imdroid.beidou.controller; - -import com.imdroid.sideslope.api.BeidouRtcmApi; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -/** - * @author LiGang - * @date 2023/10/22 21:26 - */ -@RestController -@RequestMapping("/test") -public class TestController { - - @Autowired - private BeidouRtcmApi beidouRtcmApi; - - @GetMapping("/clean-tilt") - public String cleanTilt(@RequestParam(name = "deviceId") String deviceId) { - return beidouRtcmApi.cleanTilt(deviceId); - } -}