可信空间连接器入住接口
Showing
1 changed file
with
7 additions
and
0 deletions
| ... | @@ -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() { | ... | ... |
-
Please register or sign in to post a comment