Commit 7d96062fa903f4bb6d243b813bac9e4179b9ef94

Authored by 张志伟
1 parent 086b7e22

:rocket: feature(*): 对接配置中心

- 对接配置中心
fw-hermes-server/src/main/java/cn/fw/hermes/controller/erp/XinGeDebugController.kt
... ... @@ -7,7 +7,6 @@ import cn.fw.hermes.domain.xinge.XinGeProfile
7 7 import cn.fw.hermes.service.property.XinGeProperty
8 8 import cn.fw.security.auth.client.annotation.Authorization
9 9 import cn.fw.security.auth.client.enums.AuthType
10   -import lombok.RequiredArgsConstructor
11 10 import org.springframework.validation.annotation.Validated
12 11 import org.springframework.web.bind.annotation.GetMapping
13 12 import org.springframework.web.bind.annotation.RequestMapping
... ... @@ -24,7 +23,6 @@ import org.springframework.web.bind.annotation.RestController
24 23 @Validated
25 24 @RestController
26 25 @RequestMapping("/debug/xinge")
27   -@RequiredArgsConstructor
28 26 @Authorization(AuthType.NONE)
29 27 class XinGeDebugController(private val xinGeProperty: XinGeProperty) {
30 28 @ControllerMethod("获取信鸽相关配置")
... ...