|
@@ -58,9 +58,9 @@ public class CourseChapterSectionController extends BaseController {
|
|
|
Map<String, Object> result = new HashMap<>();
|
|
|
result.put("total",new PageInfo(list).getTotal());
|
|
|
result.put("code", HttpStatus.HTTP_OK);
|
|
|
- result.put("list",list);
|
|
|
+ result.put("rows",list);
|
|
|
result.put("msg","查询成功");
|
|
|
- result.put("sectionTotal",iCourseChapterSectionService.getListTotalTime(id));
|
|
|
+ result.put("timeTotal",iCourseChapterSectionService.getListTotalTime(id));
|
|
|
return result;
|
|
|
}
|
|
|
|