Sfoglia il codice sorgente

mapper bean定义错误修复

luoshi 4 anni fa
parent
commit
f86b7b9361

+ 2 - 2
themis-business/src/main/resources/mapper/TIeInvigilateWarnInfoMapper.xml

@@ -7,7 +7,7 @@
         from t_ie_invigilate_warn_info tiiwi
         left join t_e_exam_student tees on tees.id = tiiwi.exam_student_id
         left join t_e_exam tee on tee.id = tees.exam_id
-        <where> 1 = 1
+        <where>1 = 1
             <if test="examId != null and examId != ''">
                 and tiiwi.exam_id = #{examId}
             </if>
@@ -62,7 +62,7 @@
         </where>
     </select>
 
-    <select id="findLastMsg" resultType="com.qmth.themis.business.bean.admin.WarningNotifyBean">
+    <select id="findLastMsg" resultType="com.qmth.themis.business.bean.backend.WarningNotifyBean">
         SELECT
         f.identity,
         f.name,

+ 9 - 8
themis-business/src/main/resources/mapper/TOeExamRecordMapper.xml

@@ -271,7 +271,7 @@
         ORDER BY RAND() LIMIT #{randomNum}
     </select>
 
-    <select id="invigilatePagePatrolList" resultType="com.qmth.themis.business.bean.admin.InvigilateListPatrolBean">
+    <select id="invigilatePagePatrolList" resultType="com.qmth.themis.business.bean.backend.InvigilateListPatrolBean">
         select (@i := @i + 1) as seq,t.* from(
         <include refid="invigilatePageHead"/>
         ,(select count(1) from t_ie_invigilate_exception_info tiiei where tiiei.exam_record_id = t.id) as exceptionCount
@@ -301,7 +301,7 @@
         order by t.roomCode
     </select>
 
-    <select id="invigilatePageWarningList" resultType="com.qmth.themis.business.bean.admin.InvigilateListWarningBean">
+    <select id="invigilatePageWarningList" resultType="com.qmth.themis.business.bean.backend.InvigilateListWarningBean">
         select (@i := @i + 1) as seq,t.* from(select
         tiiwi.id as warningId,
         tee.id as examId,
@@ -467,7 +467,8 @@
         and t.warningId = tiiwi.id)
     </update>
 
-    <select id="invigilatePageProgressList" resultType="com.qmth.themis.business.bean.admin.InvigilateListProgressBean">
+    <select id="invigilatePageProgressList"
+            resultType="com.qmth.themis.business.bean.backend.InvigilateListProgressBean">
         select
         distinct tee.id as examId,
         tee.name as examName,
@@ -525,7 +526,7 @@
     </select>
 
     <select id="invigilatePageProgressListExport"
-            resultType="com.qmth.themis.business.bean.admin.InvigilateListProgressExcelBean">
+            resultType="com.qmth.themis.business.bean.backend.InvigilateListProgressExcelBean">
         select
         distinct tee.id as examId,
         tee.name as examName,
@@ -583,7 +584,7 @@
         order by tees.room_code
     </select>
 
-    <select id="invigilatePageListHistory" resultType="com.qmth.themis.business.bean.admin.InvigilateListHistoryBean">
+    <select id="invigilatePageListHistory" resultType="com.qmth.themis.business.bean.backend.InvigilateListHistoryBean">
         select (@i := @i + 1) as seq,t.* from(
         <include refid="invigilatePageHead"/>
         ,tes.mobile_number as mobileNumber
@@ -693,7 +694,7 @@
 		limit 1
 	</select>
 
-    <select id="patrolReport" resultType="com.qmth.themis.business.bean.admin.InvigilateListPatrolReportBean">
+    <select id="patrolReport" resultType="com.qmth.themis.business.bean.backend.InvigilateListPatrolReportBean">
         select
         t.roomCode,
         t.roomName,
@@ -849,7 +850,7 @@
         GROUP BY
         w.type
     </select>
-    <select id="getWarnTrend" resultType="com.qmth.themis.business.bean.admin.ExaminationMonitorHourWarnCountBean">
+    <select id="getWarnTrend" resultType="com.qmth.themis.business.bean.backend.ExaminationMonitorHourWarnCountBean">
         SELECT
         FROM_UNIXTIME(w.create_time / 1000,'%H') hour,
         count(1) count
@@ -867,7 +868,7 @@
 		update t_oe_exam_record t set t.has_answer_file=#{hasAnswerFile} where t.id=#{recordId}
 	</update>
 
-    <select id="findExamRecordNeedMark" resultType="com.qmth.themis.business.bean.admin.OpenRecordNeedMarkBean">
+    <select id="findExamRecordNeedMark" resultType="com.qmth.themis.business.bean.backend.OpenRecordNeedMarkBean">
         SELECT
         t.id examRecordId,
         t.exam_student_id examStudentId,