[测评系统]--测评系统核心代码库
wzp
2024-09-04 df19dcb31b846d96e26ab2c161652c51a0ec7de4
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;
}