Joburgess 5 سال پیش
والد
کامیت
599207369d
1فایلهای تغییر یافته به همراه5 افزوده شده و 5 حذف شده
  1. 5 5
      edu-user/edu-user-server/src/main/resources/config/mybatis/ExamRoomMapper.xml

+ 5 - 5
edu-user/edu-user-server/src/main/resources/config/mybatis/ExamRoomMapper.xml

@@ -275,13 +275,13 @@
 
 	<select id="queryExamRoom" resultMap="ExamRoomDto">
 		SELECT
-		er.*,
-		el.id_ el_id_,
-		el.name_ el_name_
+			er.*,
+			el.id_ el_id_,
+			el.name_ el_name_
 		FROM exam_room er
-		LEFT JOIN exam_location el ON er.exam_location_id_ = el.id_
+			LEFT JOIN exam_location el ON er.exam_location_id_ = el.id_
 		<include refid="queryExamRoomCondition"/>
-		ORDER BY eb.expect_exam_start_time_ DESC
+		ORDER BY er.id_ DESC
 		<include refid="global.limit"/>
 	</select>