|
@@ -71,14 +71,14 @@ public class ExamStudent implements Serializable {
|
|
|
* 科目代码
|
|
|
*/
|
|
|
@Column(name = "subject_code", length = 32, nullable = false)
|
|
|
- @ExcelField(title = "课程代码", align = 2, sort = 20)
|
|
|
+ @ExcelField(title = "课程代码*", align = 2, sort = 20)
|
|
|
private String subjectCode;
|
|
|
|
|
|
/**
|
|
|
* 科目名称
|
|
|
*/
|
|
|
@Column(name = "subject_name", length = 32, nullable = false)
|
|
|
- @ExcelField(title = "课程名称", align = 2, sort = 30)
|
|
|
+ @ExcelField(title = "课程名称*", align = 2, sort = 30)
|
|
|
private String subjectName;
|
|
|
|
|
|
/**
|
|
@@ -91,14 +91,14 @@ public class ExamStudent implements Serializable {
|
|
|
* 准考证号
|
|
|
*/
|
|
|
@Column(name = "exam_number", length = 64, nullable = false)
|
|
|
- @ExcelField(title = "准考证号", align = 2, sort = 40)
|
|
|
+ @ExcelField(title = "准考证号*", align = 2, sort = 40)
|
|
|
private String examNumber;
|
|
|
|
|
|
/**
|
|
|
* 学号
|
|
|
*/
|
|
|
@Column(name = "student_code", length = 64, nullable = false)
|
|
|
- @ExcelField(title = "学号", align = 2, sort = 50)
|
|
|
+ @ExcelField(title = "学号*", align = 2, sort = 50)
|
|
|
private String studentCode;
|
|
|
|
|
|
/**
|
|
@@ -111,7 +111,7 @@ public class ExamStudent implements Serializable {
|
|
|
* 姓名
|
|
|
*/
|
|
|
@Column(name = "name", length = 64, nullable = false)
|
|
|
- @ExcelField(title = "姓名", align = 2, sort = 60)
|
|
|
+ @ExcelField(title = "姓名*", align = 2, sort = 60)
|
|
|
private String name;
|
|
|
|
|
|
/**
|
|
@@ -248,21 +248,21 @@ public class ExamStudent implements Serializable {
|
|
|
/**
|
|
|
* 学院
|
|
|
*/
|
|
|
- @ExcelField(title = "学院", align = 2, sort = 130)
|
|
|
+ @ExcelField(title = "学院*", align = 2, sort = 130)
|
|
|
@Column(name = "college", length = 64, nullable = false)
|
|
|
private String college;
|
|
|
|
|
|
/**
|
|
|
* 班级
|
|
|
*/
|
|
|
- @ExcelField(title = "班级", align = 2, sort = 140)
|
|
|
+ @ExcelField(title = "班级*", align = 2, sort = 140)
|
|
|
@Column(name = "class_name", length = 64, nullable = false)
|
|
|
private String className;
|
|
|
|
|
|
/**
|
|
|
* 任课老师
|
|
|
*/
|
|
|
- @ExcelField(title = "任课老师", align = 2, sort = 150)
|
|
|
+ @ExcelField(title = "任课老师*", align = 2, sort = 150)
|
|
|
@Column(name = "teacher", length = 64, nullable = false)
|
|
|
private String teacher;
|
|
|
|