|
@@ -0,0 +1,18 @@
|
|
|
+package com.fdkankan.manage_jp.controller;
|
|
|
+
|
|
|
+import com.fdkankan.manage_jp.common.Result;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("/manage_jp/noAuth")
|
|
|
+@Slf4j
|
|
|
+public class NoAuthController {
|
|
|
+
|
|
|
+ @GetMapping("/notic")
|
|
|
+ public Result notic(){
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
+}
|