|
|
@ -169,7 +169,11 @@ public interface TallFeignClient { |
|
|
|
*/ |
|
|
|
@GetMapping("/wps/wpsId") |
|
|
|
JsonResponse<WpsVo.BusinessFileIdAndPath> getPathByWpsId(@RequestParam(name = "wpsId")Long wpsId); |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据手机号查找userId |
|
|
|
*/ |
|
|
|
@GetMapping("/users/userIdByPhone") |
|
|
|
JsonResponse<Long> getUserIdByPhone(@RequestParam(name = "phone")String phone); |
|
|
|
/** |
|
|
|
* 查找wps文件路径 |
|
|
|
*/ |
|
|
@ -373,6 +377,11 @@ class TallFeignClientFallBack implements FallbackFactory<TallFeignClient> { |
|
|
|
return JsonResponse.newInstance().fail(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public JsonResponse<Long> getUserIdByPhone(String phone) { |
|
|
|
return JsonResponse.newInstance().fail(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String getWpsFilePath(Long businessId, byte businessType) { |
|
|
|
return null; |
|
|
|