Commit 0f1cb22f by jsy672

分配考场详情增加考试名称和注意事项字段

parent 10f89d5a
......@@ -84,4 +84,7 @@ public class RecruitExamScoreVo extends OurBaseEntity {
/** 资格线 */
@Excel(name = "资格线")
private String passScore;
private String examName;
private String notice;
}
......@@ -132,11 +132,14 @@
sas.height,
sas.weight,
sas.telephone1,
sas.telephone2
sas.telephone2,
se.exam_name,
se.notice
from school_recruit_relation sar
left join school_recruit_student sas on sas.id = sar.student_id
left join school_recruit_project stp on stp.id = sar.test_id
left join junior_high_school jhs on jhs.id = sar.junior_id
left join school_recruit_exam se on se.id = sar.exam_id
where sar.del_flag = '0'
and sas.del_flag = '0'
and sar.id = #{id}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment