|
|
|
@ -390,8 +390,15 @@ getReportList
|
|
|
|
|
|
|
|
|
|
* 根据开课ID进行查询
|
|
|
|
|
|
|
|
|
|
select t.*
|
|
|
|
|
from student_hands_on_task_report t where t.teacher_open_course_id in (#join(collect)#)
|
|
|
|
|
select count(t.teacher_open_course_id) open_course_num,
|
|
|
|
|
sc.class_name class_name,toc.teacher_open_course_title open_course_name
|
|
|
|
|
from student_hands_on_task_report t
|
|
|
|
|
left join teacher_open_course toc on t.teacher_open_course_id = toc.teacher_open_course_id
|
|
|
|
|
left join student t1 on t.student_id = t1.student_id
|
|
|
|
|
left join school_class sc on t1.class_id = sc.class_id
|
|
|
|
|
where
|
|
|
|
|
t.teacher_open_course_id in (#join(collect)#)
|
|
|
|
|
group by t.teacher_open_course_id,t1.class_id
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getExcelValues
|
|
|
|
|