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);
- }
-}