|
@@ -1,6 +1,7 @@
|
|
|
package com.qmth.distributed.print.business.bean.dto;
|
|
|
|
|
|
import com.qmth.teachcloud.common.annotation.ExcelImportTempleteVaild;
|
|
|
+import com.qmth.teachcloud.common.annotation.ExcelNote;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -12,13 +13,28 @@ import com.qmth.teachcloud.common.annotation.ExcelImportTempleteVaild;
|
|
|
@ExcelImportTempleteVaild(value = true)
|
|
|
public class GradeBatchStudentClazzDto {
|
|
|
|
|
|
+ @ExcelNote("课程代码")
|
|
|
private String courseCode;
|
|
|
+
|
|
|
+ @ExcelNote("课程名称")
|
|
|
private String courseName;
|
|
|
+
|
|
|
+ @ExcelNote("试卷编号")
|
|
|
private String paperNumber;
|
|
|
+
|
|
|
+ @ExcelNote("试卷类型")
|
|
|
private String paperType;
|
|
|
+
|
|
|
+ @ExcelNote("班级ID")
|
|
|
private String clazzId;
|
|
|
+
|
|
|
+ @ExcelNote("班级名称")
|
|
|
private String clazzName;
|
|
|
+
|
|
|
+ @ExcelNote("任课老师")
|
|
|
private String teacherName;
|
|
|
+
|
|
|
+ @ExcelNote("任课老师工号")
|
|
|
private String teacherNumber;
|
|
|
|
|
|
public String getCourseCode() {
|