[测评系统]--测评系统核心代码库
林致杰
2021-11-19 c9e83423c4679ecee1fb7dff9b7e2aa02df494d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ots.project.exam.dto;
import com.ots.framework.aspectj.lang.annotation.Excel;
import com.ots.project.exam.domain.TQuestion;
import lombok.Getter;
import lombok.Setter;
import java.util.List;
 
@Getter
@Setter
public class QuestionPersonalityImport {
    @Excel(name = "MAQ题目永久性编号")
    private List<String> permanentIdList;
    @Excel(name = "题目")
    private List<TQuestion> questionList;
    @Excel(name = "维度")
    private List<QuestionItem> itemList;
    private  List<String> multilingualList;
    private String langType;
}