|
@@ -1,47 +1,47 @@
|
|
|
package com.qmth.distributed.print.business.bean.dto;
|
|
|
|
|
|
-import com.qmth.teachcloud.common.business.annotation.ExcelDBFieldDesc;
|
|
|
+import com.qmth.distributed.print.business.annotation.ExcelDBFieldDesc;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
- * @Description: 考务数据导入Dto(对应 ExaminationDBFieldsEnum 同时作为考务数据表所需要的的字段, 来接收excel导入的考务数据)
|
|
|
+ * @Description: 考务数据导入Dto(对应 ExaminationDBFieldsEnum 同时作为考务数据表所需要的的字段,来接收excel导入的考务数据)
|
|
|
* @Author: CaoZixuan
|
|
|
* @Date: 2021-04-25
|
|
|
*/
|
|
|
public class ExaminationImportDto {
|
|
|
|
|
|
@ApiModelProperty(value = "学号")
|
|
|
- @ExcelDBFieldDesc(name = "学号", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "学号",length = 30)
|
|
|
private String studentCode;
|
|
|
|
|
|
@ApiModelProperty(value = "考号")
|
|
|
- @ExcelDBFieldDesc(name = "考号", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "考号",length = 30)
|
|
|
private String ticketNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "座位号")
|
|
|
- @ExcelDBFieldDesc(name = "座位号", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "座位号",length = 30)
|
|
|
private String siteNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "姓名")
|
|
|
- @ExcelDBFieldDesc(name = "姓名", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "姓名",length = 30)
|
|
|
private String studentName;
|
|
|
|
|
|
@ApiModelProperty(value = "课程代码")
|
|
|
- @ExcelDBFieldDesc(name = "课程代码", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "课程代码",length = 30)
|
|
|
private String courseCode;
|
|
|
|
|
|
@ApiModelProperty(value = "课程名称")
|
|
|
- @ExcelDBFieldDesc(name = "课程名称", length = 50)
|
|
|
+ @ExcelDBFieldDesc(name = "课程名称",length = 50)
|
|
|
private String courseName;
|
|
|
|
|
|
@ApiModelProperty(value = "考点")
|
|
|
- @ExcelDBFieldDesc(name = "考点", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "考点",length = 30)
|
|
|
private String examPlace;
|
|
|
|
|
|
@ApiModelProperty(value = "考场")
|
|
|
- @ExcelDBFieldDesc(name = "考场", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "考场",length = 30)
|
|
|
private String examRoom;
|
|
|
|
|
|
@ApiModelProperty(value = "考试日期")
|
|
@@ -53,7 +53,7 @@ public class ExaminationImportDto {
|
|
|
private String examTime;
|
|
|
|
|
|
@ApiModelProperty(value = "试卷编号")
|
|
|
- @ExcelDBFieldDesc(name = "试卷编号", length = 30)
|
|
|
+ @ExcelDBFieldDesc(name = "试卷编号",length = 30)
|
|
|
private String paperNumber;
|
|
|
|
|
|
@ApiModelProperty(value = "备选字段集合")
|