Просмотр исходного кода

Merge branch 'xll' of wangfan/adweb3-server into master

xiebingliang 4 месяцев назад
Родитель
Сommit
e8b8253480

+ 35 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/logestic/controller/LogisticController.java

@@ -0,0 +1,35 @@
+package org.jeecg.modules.adweb.logestic.controller;
+
+import org.springframework.beans.factory.annotation.Value;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.aspect.annotation.AutoLog;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.List;
+
+/**
+ * @Time 2024/12/2 14:05
+ * @Description
+ */
+@RestController
+@RequestMapping("/adweb/logistic")
+@Slf4j
+public class LogisticController {
+    @Value("${logistic.token}")
+    private String logisticToken;
+    /**
+     * 获取每日出运token
+     */
+    @AutoLog(value = "获取每日出运token")
+    @GetMapping(value = "/getShippingToken")
+    public Result<?> getShippingToken() {
+        // 读取配置文件中的 token
+        if (!logisticToken.isEmpty()) {
+            return Result.OK(logisticToken);
+        }
+        return Result.error("获取失败");
+    }
+}