|
@@ -17,7 +17,18 @@
|
|
typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" />
|
|
typeHandler="com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler" />
|
|
</resultMap>
|
|
</resultMap>
|
|
<select id="listByStudentIds" resultMap="custMap">
|
|
<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
|
|
FROM sc_student_paper t
|
|
left join sc_paper_page pg on t.paper_id = pg.paper_id
|
|
left join sc_paper_page pg on t.paper_id = pg.paper_id
|
|
WHERE t.student_id in
|
|
WHERE t.student_id in
|