Merge branch 'dev' of http://47.92.113.182:3000/zcloud_gbs/zcloud_gbs_edu into dev
commit
42d2a4efb5
|
|
@ -46,7 +46,7 @@ public class CurriculumChapterController {
|
|||
return curriculumChapterService.listPage(qry);
|
||||
}
|
||||
|
||||
@ApiOperation("所有数据")
|
||||
/* @ApiOperation("所有数据")
|
||||
@PostMapping("/listAll")
|
||||
public MultiResponse<CurriculumChapterCO> listAll() {
|
||||
return MultiResponse.of(new ArrayList<CurriculumChapterCO>());
|
||||
|
|
@ -56,7 +56,7 @@ public class CurriculumChapterController {
|
|||
@PostMapping("/getInfoById")
|
||||
public SingleResponse<CurriculumChapterCO> getInfoById(@RequestParam("id") Long id) {
|
||||
return SingleResponse.of(new CurriculumChapterCO());
|
||||
}
|
||||
}*/
|
||||
|
||||
@ApiOperation("删除")
|
||||
@PostMapping("/remove/")
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@
|
|||
<select id="listStatistics" resultType="com.zcloud.edu.persistence.dataobject.study.ClassDO">
|
||||
SELECT
|
||||
c.class_id,
|
||||
count(c.class_id) totalCount
|
||||
count(s.student_id) totalCount
|
||||
FROM
|
||||
class c
|
||||
left join student s on s.class_id = c.class_id and s.delete_enum = 'FALSE'
|
||||
|
|
|
|||
Loading…
Reference in New Issue