38 lines
745 B
Java
38 lines
745 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@TableName("class_exam_user")
|
|
public class ClassExamUser {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private String type;
|
|
|
|
private Integer relationId;//考试类型 1小班 2自考
|
|
|
|
private Integer userId;//班级id或课程id
|
|
|
|
private Integer score;//分数
|
|
|
|
private Integer scoreSuccess;//考试完成0否1是
|
|
|
|
private String subject;
|
|
|
|
private String answer;
|
|
|
|
private Date startTime;
|
|
|
|
private Date endTime;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|