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