fix:新增租户同步spdm data服务数据
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.honeycombis.honeycom.tenant.feign;
|
||||
|
||||
import com.honeycombis.honeycom.common.core.constant.ServiceNameConstants;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
|
||||
|
||||
@FeignClient(contextId = "remoteSpdmTenantService", value = ServiceNameConstants.SPDM_SERVICE)
|
||||
public interface RemoteSpdmService {
|
||||
|
||||
@PostMapping("/honeycom-spdm/spdm-tenant/initNewTenant")
|
||||
void initNewTenant(@RequestParam Long tenantId);
|
||||
}
|
||||
Reference in New Issue
Block a user