更新10.17

This commit is contained in:
许允枞 2024-10-17 21:28:12 +08:00
parent 5372580077
commit 9e65b5504c
2 changed files with 12 additions and 0 deletions

View File

@ -92,8 +92,11 @@ public class HitRegInfoController extends BaseController
hitRegInfoExportVo.setZdlTeacher1(zdTeacher.get(1).getTeacherName());
}
hitRegInfoExportVo.setStudent1(hitRegInfo1.getStudentUserss().get(0).getStuName());
hitRegInfoExportVo.setStudent1Phone(hitRegInfo1.getStudentUserss().get(0).getPhoneNumber());
hitRegInfoExportVo.setStudent2(hitRegInfo1.getStudentUserss().get(1).getStuName());
hitRegInfoExportVo.setStudent2Phone(hitRegInfo1.getStudentUserss().get(1).getPhoneNumber());
hitRegInfoExportVo.setStudent3(hitRegInfo1.getStudentUserss().get(2).getStuName());
hitRegInfoExportVo.setStudent3Phone(hitRegInfo1.getStudentUserss().get(2).getPhoneNumber());
list1.add(hitRegInfoExportVo);
}catch (Exception e) {
log.error("导出错误,团队信息:{}", hitRegInfo1);

View File

@ -53,9 +53,18 @@ public class HitRegInfoExportVo {
@Excel(name = "学生1")
private String student1;
@Excel(name = "学生1手机号")
private String student1Phone;
@Excel(name = "学生2")
private String student2;
@Excel(name = "学生2手机号")
private String student2Phone;
@Excel(name = "学生3")
private String student3;
@Excel(name = "学生3手机号")
private String student3Phone;
}