|
@@ -33,6 +33,12 @@ public class RoomController{
|
|
return new BaseResponse<>();
|
|
return new BaseResponse<>();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @RequestMapping(value = "/statusImMsg", method = RequestMethod.POST)
|
|
|
|
+ public Object statusImMsg(@RequestBody String body){
|
|
|
|
+ log.info("statusImMsg body{}:",body);
|
|
|
|
+ return new BaseResponse<>();
|
|
|
|
+ }
|
|
|
|
+
|
|
@RequestMapping(value = "/leave", method = RequestMethod.POST)
|
|
@RequestMapping(value = "/leave", method = RequestMethod.POST)
|
|
public Object leaveRoom(@RequestBody RoomStatusNotify roomStatusNotify) throws Exception {
|
|
public Object leaveRoom(@RequestBody RoomStatusNotify roomStatusNotify) throws Exception {
|
|
//成员退出
|
|
//成员退出
|