xiangpei
2024-03-28 0f431b52e0936456bd165d9553761bfd8a5a0517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.mindskip.xzs.domain.other;
 
import lombok.Data;
 
/**
 * @version 2.2.0
 * @description: 题目导入
 * Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
 * @date 2021 /9/7 9:45
 */
@Data
public class QuestionImportCellIndex {
 
    /**
     * Instantiates a new Question import cell index.
     *
     * @param level     the level
     * @param subject   the subject
     * @param knowledge the knowledge
     * @param id        the id
     * @param title     the title
     * @param analyze   the analyze
     * @param score     the score
     * @param difficult the difficult
     * @param correct   the correct
     * @param itemStart the item start
     * @param itemEnd   the item end
     * @param error     the error
     */
    public QuestionImportCellIndex(Integer level, Integer subject, Integer knowledge, Integer id, Integer title, Integer analyze, Integer score, Integer difficult, Integer correct, Integer itemStart, Integer itemEnd, Integer error) {
        this.level = level;
        this.subject = subject;
        this.knowledge = knowledge;
        this.id = id;
        this.title = title;
        this.analyze = analyze;
        this.score = score;
        this.difficult = difficult;
        this.correct = correct;
        this.itemStart = itemStart;
        this.itemEnd = itemEnd;
        this.error = error;
    }
 
 
    /**
     * 年级
     */
    private Integer level;
    /**
     * 学科
     */
    private Integer subject;
    /**
     * 知识点
     */
    private Integer knowledge;
    private Integer id;
    /**
     * 题干
     */
    private Integer title;
    /**
     * 解析
     */
    private Integer analyze;
    /**
     * 分数
     */
    private Integer score;
    /**
     * 难度
     */
    private Integer difficult;
    /**
     * 标答
     */
    private Integer correct;
    /**
     * 选项开始
     */
    private Integer itemStart;
    /**
     * 选项结束
     */
    private Integer itemEnd;
    /**
     * 错误信息
     */
    private Integer error;
 
}