|  | @@ -36,6 +36,7 @@ import com.ym.mec.biz.service.ClassGroupService;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.service.ClassGroupTeacherMapperService;
 | 
	
		
			
				|  |  |  import com.ym.mec.common.controller.BaseController;
 | 
	
		
			
				|  |  |  import com.ym.mec.common.entity.HttpResponseResult;
 | 
	
		
			
				|  |  | +import com.ym.mec.common.page.PageInfo;
 | 
	
		
			
				|  |  |  import com.ym.mec.common.page.QueryInfo;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  @RequestMapping("classGroup")
 | 
	
	
		
			
				|  | @@ -53,7 +54,7 @@ public class ClassGroupController extends BaseController {
 | 
	
		
			
				|  |  |      @ApiOperation(value = "分页查询班级列表")
 | 
	
		
			
				|  |  |      @GetMapping("/queryPage")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('classGroup/queryPage')")
 | 
	
		
			
				|  |  | -    public Object queryPage(ClassGroupQueryInfo queryInfo) {
 | 
	
		
			
				|  |  | +    public HttpResponseResult<PageInfo<ClassGroup>> queryPage(ClassGroupQueryInfo queryInfo) {
 | 
	
		
			
				|  |  |      	queryInfo.setDelFlag(0);
 | 
	
		
			
				|  |  |          return succeed(classGroupService.queryPage(queryInfo));
 | 
	
		
			
				|  |  |      }
 | 
	
	
		
			
				|  | @@ -61,7 +62,7 @@ public class ClassGroupController extends BaseController {
 | 
	
		
			
				|  |  |      @ApiOperation(value = "创建班级")
 | 
	
		
			
				|  |  |      @PostMapping("/create")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('classGroup/create')")
 | 
	
		
			
				|  |  | -    public Object create(@RequestBody ClassGroup classGroup) throws Exception {
 | 
	
		
			
				|  |  | +    public HttpResponseResult<Boolean> create(@RequestBody ClassGroup classGroup) throws Exception {
 | 
	
		
			
				|  |  |          return succeed(classGroupService.create(classGroup));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 |