36 lines
665 B
Java
36 lines
665 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 Integer classId;
|
|
|
|
private Integer userId;
|
|
|
|
private Integer score;//分数
|
|
|
|
private Integer scoreSuccess;//考试完成0否1是
|
|
|
|
private String subject;
|
|
|
|
private String answer;
|
|
|
|
private Date startTime;
|
|
|
|
private Date endTime;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|