|
|
@@ -30,4 +30,8 @@ public interface WebSocketFeign {
|
|
|
RESTfulResult noPage(@RequestParam HashMap<String,Object> parmas);
|
|
|
@GetMapping("api/v1/websocket/basewebsocketpushs/{id}")
|
|
|
RESTfulResult get(@PathVariable String id);
|
|
|
+ @GetMapping("api/v1/websocket/basewebsocketpushs/getUserByOrgCode/{orgCode}")//String
|
|
|
+ RESTfulResult getUserByOrgCode(@PathVariable("orgCode") String orgCode);
|
|
|
+ @PostMapping("/sendWebsocketByIds/{ids}")
|
|
|
+ RESTfulResult sendWebsocketByIds(@PathVariable("ids") String webSocketIds, @RequestBody HashMap<String,Object> map);
|
|
|
}
|