fwq
2024-04-11 f31ae0176ba124a2a39121584f5c39c3de932157
提交 | 用户 | age
e98033 1 package com.hz.his.feign.service.sync;
R 2
3 import com.hx.resultTool.Result;
4 import org.springframework.cloud.openfeign.FeignClient;
5 import org.springframework.web.bind.annotation.PostMapping;
6
7 import java.util.Map;
8
9 /**
10  * 同步商汤用户头像
11  *
12  * @Author:知知
13  * @Date:2023/5/12 10:46
14  */
15 @FeignClient(name = "synchro-service", path = "/his_synchro", contextId = "synchro-st-user-img")
16 public interface SyncSTUserImgService {
17
18
19     /***同步商汤用户头像 */
20     @PostMapping(value = "/st/sync/getStImgUrl")
21     Result syncStUserImg(Map<String,Object> userMap);
22
23
24
25
26
27 }