|  | @@ -10,7 +10,9 @@ import com.yonge.cooleshow.biz.dal.service.ImGroupService;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.common.controller.BaseController;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.common.entity.HttpResponseResult;
 | 
	
		
			
				|  |  |  import com.yonge.toolset.utils.validator.ValidationKit;
 | 
	
		
			
				|  |  | -import io.swagger.annotations.*;
 | 
	
		
			
				|  |  | +import io.swagger.annotations.Api;
 | 
	
		
			
				|  |  | +import io.swagger.annotations.ApiOperation;
 | 
	
		
			
				|  |  | +import io.swagger.annotations.ApiParam;
 | 
	
		
			
				|  |  |  import org.springframework.validation.BindingResult;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.*;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -38,7 +40,7 @@ public class ImGroupController extends BaseController {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation("获取群详情")
 | 
	
		
			
				|  |  |      @PostMapping(value = "/getDetail/{groupId}")
 | 
	
		
			
				|  |  | -    public HttpResponseResult<ImGroup> getDetail(@ApiParam(value = "群编号", required = true) @PathVariable("groupId") Long groupId) throws Exception {
 | 
	
		
			
				|  |  | +    public HttpResponseResult<ImGroup> getDetail(@ApiParam(value = "群编号", required = true) @PathVariable("groupId") String groupId) throws Exception {
 | 
	
		
			
				|  |  |          return succeed(imGroupService.getById(groupId));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |