c40c9fb6 by xu

可信空间连接器入住接口

1 parent a5607df4
......@@ -123,6 +123,13 @@ public class TdsConnectorIdentityController {
return CommonRes.success(vo);
}
@GetMapping("/get-connector-identity")
@SystemLog(value = "连接器身份信息-查询有效的连接器信息")
public CommonRes<String> getConnector() {
TdsConnectorIdentityRSVO vo = tdsConnectorIdentityService.getEffectiveConnector();
return CommonRes.success(vo.getConnectorIdentity());
}
@GetMapping("/check-connector")
@SystemLog(value = "连接器身份信息-检查连接器是否已经存在")
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!