yin hace 7 meses
padre
commit
a052c59b41
Se han modificado 1 ficheros con 12 adiciones y 1 borrados
  1. 12 1
      src/main/resources/mapper/PaperPageMapper.xml

+ 12 - 1
src/main/resources/mapper/PaperPageMapper.xml

@@ -17,7 +17,18 @@
 			typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" />
 	</resultMap>
 	<select id="listByStudentIds" resultMap="custMap">
-		SELECT pg.*,t.student_id,t.paper_number
+		SELECT pg.id,
+			pg.paper_Id,
+			pg.page_index,
+			pg.absent,
+			pg.breach,
+			pg.paper_type,
+			pg.question,
+			pg.selective,
+			pg.sheet_path,
+			pg.slicePath,
+		       t.student_id,
+		       t.paper_number
 		FROM sc_student_paper t
 		left join sc_paper_page pg on t.paper_id = pg.paper_id
 		WHERE t.student_id in