|
@@ -57,16 +57,16 @@
|
|
|
order by
|
|
|
tbth.create_time desc
|
|
|
limit 1) as cloudMarkPushDataStatus
|
|
|
- <if test="type != null and type != '' and type == 'monitor'">
|
|
|
+ <!--<if test="type != null and type != '' and type == 'monitor'">
|
|
|
,group_concat(distinct tees.room_code) as roomCode,
|
|
|
group_concat(distinct tees.room_name) as roomName
|
|
|
- </if>
|
|
|
+ </if>-->
|
|
|
from t_e_exam t
|
|
|
left join t_b_user tbu1 on t.create_id = tbu1.id
|
|
|
left join t_b_user tbu2 on t.update_id = tbu2.id
|
|
|
- <if test="type != null and type != '' and type == 'monitor'">
|
|
|
+ <!--<if test="type != null and type != '' and type == 'monitor'">
|
|
|
left join t_e_exam_student tees on tees.exam_id = t.id
|
|
|
- </if>
|
|
|
+ </if>-->
|
|
|
<if test="userId != null and userId != ''">
|
|
|
left join t_b_exam_invigilate_user tbeiu on tbeiu.exam_id = t.id
|
|
|
</if>
|
|
@@ -100,7 +100,7 @@
|
|
|
and t.enable = #{enable}
|
|
|
</if>
|
|
|
</where>
|
|
|
- <if test="type != null and type != '' and type == 'monitor'">
|
|
|
+ <!--<if test="type != null and type != '' and type == 'monitor'">
|
|
|
group by t.id,
|
|
|
t.code,
|
|
|
t.name,
|
|
@@ -116,7 +116,7 @@
|
|
|
t.monitor_video_source,
|
|
|
t.monitor_record,
|
|
|
t.monitor_status
|
|
|
- </if>
|
|
|
+ </if>-->
|
|
|
order by t.create_time desc
|
|
|
</select>
|
|
|
|