Blame view

ExerciseDoneHistoryDO.java 1.23 KB
涂亚平 committed
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
package com.meishu.model;

import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.meishu.util.BaseModel;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.Date;

/**
 * <p>
 * 学生做题记录表
 * </p>
 *
 * @author Tuyp
 * @since 2021-04-27
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("exercise_done_history")
public class ExerciseDoneHistoryDO extends BaseModel {

    private static final long serialVersionUID = 1L;

    @TableId(value = "id", type = IdType.AUTO)
    private Long id;


    /**
     * 习题id
     */
    private Long exerciseId;

    /**
     * 做题答案 /已读
     */
    private String answer;

    /**
     * 结果  0:错误  1:正确
     */
    private Integer result;

    /**
     * 做题时长
     */
    private Integer length;

    private Integer userId;

    //班级类型 0:行政班  1:进阶班
    private Integer classType;

    // 0:关联习题    1:拓展习题
    private Integer exerciseType;

    private Integer taskSubjectId;

    //作业内容id
    private Integer contentId;

    private Integer completeId;

    private String doneType;


}