| | |
| | | */ |
| | | @FeignClient(contextId = "UnitClient", value = ServiceNameConstants.OTHER_SERVICE, fallbackFactory = OtherFallbackFactory.class) |
| | | public interface OtherClient { |
| | | |
| | | /** |
| | | * 远程调用 获取首次添加车辆可获得积分 |
| | | * @return |
| | | */ |
| | | @PostMapping("/integral/getAddCarIntegral") |
| | | public R<Integer> getAddCarIntegral(); |
| | | //单位分页 |
| | | @PostMapping(value = "/t-company/unit/page") |
| | | R<Page<TCompany>> queryUnitPage(@RequestBody UnitListQueryDto unitListQueryDto); |
| | |
| | | |
| | | @PutMapping(value = "/t-enterprise-user-application/export") |
| | | R<List<TEnterpriseUserApplication>> getTnterPrise(); |
| | | @GetMapping("/region/getRegionBuyCode/{code}") |
| | | R<Region> getRegionBuyCode(@PathVariable("code") String code); |
| | | } |