获取考试结果
This commit is contained in:
parent
ce36c26dff
commit
b41598f7f8
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,19 @@
|
|||||||
|
package org.jeecg.modules.aiol.dto;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import org.jeecg.modules.aiol.entity.AiolExamAnswer;
|
||||||
|
import org.jeecg.modules.aiol.entity.AiolQuestion;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class ExaminationResult {
|
||||||
|
//题目内容
|
||||||
|
private AiolQuestion question;
|
||||||
|
//选项答案
|
||||||
|
private List<?> answer;
|
||||||
|
//用户答案
|
||||||
|
private AiolExamAnswer userAnswer;
|
||||||
|
//子题目列表
|
||||||
|
private List<ExaminationResult> children;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user