diff --git a/APIService/pom.xml b/APIService/pom.xml
index 5d20796..84154ef 100644
--- a/APIService/pom.xml
+++ b/APIService/pom.xml
@@ -17,4 +17,12 @@
17
+
+
+ com.storeroom
+ common
+ 1.0
+
+
+
\ No newline at end of file
diff --git a/APIService/src/main/java/com/storeroom/controller/TestApiServiceController.java b/APIService/src/main/java/com/storeroom/controller/TestApiServiceController.java
new file mode 100644
index 0000000..c301e7c
--- /dev/null
+++ b/APIService/src/main/java/com/storeroom/controller/TestApiServiceController.java
@@ -0,0 +1,26 @@
+package com.storeroom.controller;
+
+
+import com.storeroom.annotaion.rest.AnonymousGetMapping;
+import com.storeroom.service.ApiService;
+import com.storeroom.utils.ApiResponse;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import lombok.RequiredArgsConstructor;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+@RequestMapping("/api/service/")
+@Api(tags = "测试第三方接口")
+@RequiredArgsConstructor
+public class TestApiServiceController {
+
+ private final ApiService apiService;
+
+ @ApiOperation("获取库房token")
+ @AnonymousGetMapping("token")
+ public ApiResponse