|
@@ -116,6 +116,7 @@
|
|
|
<result property="status" column="status"/>
|
|
|
<result property="auditTime" column="audit_time"/>
|
|
|
<result property="type" column="type"/>
|
|
|
+ <result property="sort" column="sort"/>
|
|
|
<result property="courseId" column="course_id"/>
|
|
|
<result property="studyEndTime" column="study_end_time"/>
|
|
|
<result property="durationTime" column="duration_time"/>
|
|
@@ -433,6 +434,7 @@
|
|
|
<select id="listPeriodAudit" parameterType="com.zhongzheng.modules.grade.bo.ClassGradeUserQueryBo"
|
|
|
resultMap="ClassPeriodVo">
|
|
|
SELECT
|
|
|
+ cm.sort,
|
|
|
cm.menu_id as id,
|
|
|
cm.course_id,
|
|
|
(SELECT u.realname FROM `user` u where 1=1 <if test="userId != null and userId !='' ">
|
|
@@ -458,6 +460,7 @@
|
|
|
AND cm.type=1
|
|
|
UNION
|
|
|
SELECT
|
|
|
+ cm.sort,
|
|
|
cm.menu_id as id,
|
|
|
cm.course_id,
|
|
|
(SELECT u.realname FROM `user` u where 1=1 <if test="userId != null and userId !='' ">
|
|
@@ -486,6 +489,7 @@
|
|
|
<select id="listPeriodAuditSection" parameterType="com.zhongzheng.modules.grade.bo.ClassGradeUserQueryBo"
|
|
|
resultMap="ClassPeriodVo">
|
|
|
SELECT
|
|
|
+ cm.sort,
|
|
|
cm.menu_id as id,
|
|
|
cm.course_id,
|
|
|
(SELECT u.realname FROM `user` u where 1=1
|