@@ -409,6 +409,7 @@
SELECT
tep.id,
tep.name,
+ tep.paper_type paperType,
su.ID userId,
cc.ID hourId,
cc.NAME hourName,
@@ -417,7 +418,7 @@
ch.COURSE_ID courseId,
ci.COURSE_NAME courseName,
co.GRADES_ID gradesId,
- tepa.status,
+ nvl(tepa.status,0) status,
tepa.id answerId
FROM
t_exam_paper tep
@@ -54,6 +54,7 @@ public class ExamPaperVo {
*/
private Integer answerId;
+ private Integer paperType;
}