parent
4c8c065dd4
commit
5cd4262f23
18 changed files with 443 additions and 28 deletions
@ -0,0 +1,76 @@ |
||||
package com.msdw.tms.entity.vo; |
||||
|
||||
import com.msdw.tms.common.utils.poi.ExcelAttribute; |
||||
import lombok.Data; |
||||
import lombok.ToString; |
||||
|
||||
/** |
||||
* 试题的基本信息表 |
||||
* |
||||
* @author gongsj |
||||
*/ |
||||
@Data |
||||
@ToString |
||||
public class QuestionsImportFailureVO { |
||||
/** |
||||
* 第几行 |
||||
*/ |
||||
private Integer index; |
||||
|
||||
/** |
||||
* 题干,问题描述 |
||||
*/ |
||||
@ExcelAttribute(sort = 0) |
||||
private String questionStem; |
||||
/** |
||||
* 题型 |
||||
*/ |
||||
@ExcelAttribute(sort = 1) |
||||
private String questionTypeName; |
||||
/** |
||||
* 选项A |
||||
*/ |
||||
@ExcelAttribute(sort = 2) |
||||
private String optionA; |
||||
/** |
||||
* 选项B |
||||
*/ |
||||
@ExcelAttribute(sort = 3) |
||||
private String optionB; |
||||
/** |
||||
* 选项C |
||||
*/ |
||||
@ExcelAttribute(sort = 4) |
||||
private String optionC; |
||||
/** |
||||
* 选项D |
||||
*/ |
||||
@ExcelAttribute(sort = 5) |
||||
private String optionD; |
||||
/** |
||||
* 选项E |
||||
*/ |
||||
@ExcelAttribute(sort = 6) |
||||
private String optionE; |
||||
/** |
||||
* 选项F |
||||
*/ |
||||
@ExcelAttribute(sort = 7) |
||||
private String optionF; |
||||
/** |
||||
* 正确答案 |
||||
*/ |
||||
@ExcelAttribute(sort = 8) |
||||
private String answer; |
||||
/** |
||||
* 答案解析 |
||||
*/ |
||||
@ExcelAttribute(sort = 9) |
||||
private String answerAnalysis; |
||||
|
||||
/** |
||||
* 失败原因 |
||||
*/ |
||||
@ExcelAttribute(sort = 10) |
||||
private String failureMsg; |
||||
} |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,26 @@ |
||||
package com.msdw.tms; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Data; |
||||
import lombok.NoArgsConstructor; |
||||
|
||||
@Data |
||||
@NoArgsConstructor |
||||
@AllArgsConstructor |
||||
public class UserTest { |
||||
private int index; |
||||
private String name; |
||||
private String gender; |
||||
private String addr; |
||||
private String phone; |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return "UserTest{" + |
||||
"name='" + name + '\'' + |
||||
", gender='" + gender + '\'' + |
||||
", addr='" + addr + '\'' + |
||||
", phone='" + phone + '\'' + |
||||
'}'; |
||||
} |
||||
} |
Loading…
Reference in new issue