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 userMap); }