Browse Source

临时更改教研分析导入考务数据没有注解导致的报错

caozixuan 2 năm trước cách đây
mục cha
commit
ecaef4a869

+ 16 - 0
distributed-print-business/src/main/java/com/qmth/distributed/print/business/bean/dto/GradeBatchStudentClazzDto.java

@@ -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() {