c40c9fb6 by xu

可信空间连接器入住接口

1 parent a5607df4
...@@ -123,6 +123,13 @@ public class TdsConnectorIdentityController { ...@@ -123,6 +123,13 @@ public class TdsConnectorIdentityController {
123 return CommonRes.success(vo); 123 return CommonRes.success(vo);
124 } 124 }
125 125
126 @GetMapping("/get-connector-identity")
127 @SystemLog(value = "连接器身份信息-查询有效的连接器信息")
128 public CommonRes<String> getConnector() {
129 TdsConnectorIdentityRSVO vo = tdsConnectorIdentityService.getEffectiveConnector();
130 return CommonRes.success(vo.getConnectorIdentity());
131 }
132
126 @GetMapping("/check-connector") 133 @GetMapping("/check-connector")
127 @SystemLog(value = "连接器身份信息-检查连接器是否已经存在") 134 @SystemLog(value = "连接器身份信息-检查连接器是否已经存在")
128 public CommonRes<TdsConnectorIdentityRSVO> checkConnector() { 135 public CommonRes<TdsConnectorIdentityRSVO> checkConnector() {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!