|
@@ -35,26 +35,38 @@ public class InvigilateListProgressExcelBean implements Serializable {
|
|
|
@ExcelProperty(name = "姓名", width = 30, index = 5)
|
|
|
private String name;
|
|
|
|
|
|
+ @ApiModelProperty(name = "班级")
|
|
|
+ @ExcelProperty(name = "班级", width = 30, index = 6)
|
|
|
+ private String classNo;
|
|
|
+
|
|
|
// @ApiModelProperty(name = "联系电话")
|
|
|
// @ExcelProperty(name = "联系电话", width = 30, index = 6)
|
|
|
// private String mobileNumber;
|
|
|
|
|
|
@ApiModelProperty(name = "科目名称")
|
|
|
- @ExcelProperty(name = "科目(代码)", width = 30, index = 6)
|
|
|
+ @ExcelProperty(name = "科目(代码)", width = 30, index = 7)
|
|
|
private String courseName;
|
|
|
|
|
|
@ApiModelProperty(value = "剩余考试次数")
|
|
|
- @ExcelProperty(name = "剩余考试次数", width = 30, index = 7)
|
|
|
+ @ExcelProperty(name = "剩余考试次数", width = 30, index = 8)
|
|
|
private Integer leftExamCount;
|
|
|
|
|
|
@ApiModelProperty(name = "考生状态")
|
|
|
- @ExcelProperty(name = "完成状态", width = 30, index = 8)
|
|
|
+ @ExcelProperty(name = "完成状态", width = 30, index = 9)
|
|
|
private String status;
|
|
|
|
|
|
@ApiModelProperty(name = "违纪状态")
|
|
|
- @ExcelProperty(name = "违纪状态", width = 30, index = 9)
|
|
|
+ @ExcelProperty(name = "违纪状态", width = 30, index = 10)
|
|
|
private String breachStatus;
|
|
|
|
|
|
+ public String getClassNo() {
|
|
|
+ return classNo;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassNo(String classNo) {
|
|
|
+ this.classNo = classNo;
|
|
|
+ }
|
|
|
+
|
|
|
public String getBreachStatus() {
|
|
|
return breachStatus;
|
|
|
}
|