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