add remote firmInfo

master
冯凯 2023-11-22 09:31:24 +08:00
parent e893ce2f38
commit 26c4d85191
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<artifactId>dragon-vehicle-firm</artifactId> <artifactId>dragon-vehicle-firm</artifactId>
<version>3.6.3</version> <version>3.6.3</version>
</parent> </parent>
<version>3.6.6</version> <version>3.6.7</version>
<artifactId>vehicle-firm-remote</artifactId> <artifactId>vehicle-firm-remote</artifactId>
<properties> <properties>

View File

@ -16,6 +16,6 @@ import org.springframework.web.bind.annotation.GetMapping;
@FeignClient(contextId = "remoteFirmService",value = ServiceNameConstants.FIRM_SERVICE,fallbackFactory = RemoteFirmServiceFallbackFactory.class) @FeignClient(contextId = "remoteFirmService",value = ServiceNameConstants.FIRM_SERVICE,fallbackFactory = RemoteFirmServiceFallbackFactory.class)
public interface RemoteFirmService { public interface RemoteFirmService {
@GetMapping("firm/by/userId") @GetMapping("/firm/by/userId")
public Result<FirmInfoCache> getFirmInfoByUserId(); public Result<FirmInfoCache> getFirmInfoByUserId();
} }