REQ-2633-处理根据电话查询第三方信息请求报错问题

This commit is contained in:
yangqicheng 2024-06-27 16:37:53 +08:00
parent 102b6ab7a6
commit d204f9cc91

View File

@ -38,6 +38,6 @@ public interface ThirdPartySyncApi {
* @param phone 电话号码
* @return 三方信息列表
*/
@GetMapping("api/sync/getUser/{phone}")
@GetMapping("api/sync/getUserByPhone/{phone}")
ApiResult<List<ThirdPartyUserDTO>> getUserInfosByPhone(@PathVariable String phone);
}