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; }