|
@@ -1,7 +1,8 @@
|
|
|
package com.fjhx.controller;
|
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject;
|
|
|
-import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
@@ -14,11 +15,11 @@ import org.springframework.web.client.RestTemplate;
|
|
|
* @author zlj
|
|
|
* @since 2023-08-09
|
|
|
*/
|
|
|
-@Slf4j
|
|
|
@RestController
|
|
|
@RequestMapping("/open")
|
|
|
public class SystemMenuController {
|
|
|
|
|
|
+ private static final Logger log = LoggerFactory.getLogger(SystemMenuController.class);
|
|
|
private static final RestTemplate restTemplate = new RestTemplate();
|
|
|
|
|
|
@Value("${byteSailing.dingding.url}")
|