|
|
@@ -8,9 +8,9 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
@FeignClient(url = "${feign.alienStore.url}", name = "alien-store")
|
|
|
public interface AlienStoreFeign {
|
|
|
|
|
|
- @GetMapping("/message/getMessageList")
|
|
|
- JSONObject getMessageList(@RequestParam(value = "receiverId") String receiverId,
|
|
|
- @RequestParam(value = "friendType") int friendType,
|
|
|
- @RequestParam(value = "search") String search);
|
|
|
+ @GetMapping("/websocket/sendMsgToClientByPhoneId")
|
|
|
+ JSONObject sendMsgToClientByPhoneId(
|
|
|
+ @RequestParam(value = "messageReceiverId") String messageReceiverId,
|
|
|
+ @RequestParam(value = "webSocketVoStr") String webSocketVoStr);
|
|
|
|
|
|
}
|