班级相关
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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;
|
||||
|
||||
@Data
|
||||
@TableName("class_exam_user")
|
||||
public class ClassExamUser {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer examId;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private Integer score;//分数
|
||||
|
||||
private String scoreSuccess;//是否完成
|
||||
|
||||
private String subject;
|
||||
|
||||
private String answer;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user