package com.ym.controller; import com.ym.service.GroupService; import io.rong.models.group.GroupModel; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; /** * Created by weiqinxiao on 2019/2/25. */ @RestController @RequestMapping("/muteMembers") public class MuteMembersController { @Autowired GroupService groupService; @RequestMapping(value = "/add", method = RequestMethod.POST) public Object add(@RequestBody GroupModel groupModel) throws Exception { return groupService.muteMembersAdd(groupModel); } @RequestMapping(value = "/remove", method = RequestMethod.POST) public Object remove(@RequestBody GroupModel groupModel) throws Exception { return groupService.muteMembersRemove(groupModel); } @RequestMapping(value = "/getList", method = RequestMethod.POST) public Object getList(String groupId) throws Exception { return groupService.muteMembersGetList(groupId); } }