班级相关

This commit is contained in:
wuchunlei
2024-08-22 16:30:04 +08:00
parent 0272bcbf92
commit ee81ac7dfb
17 changed files with 1489 additions and 114 deletions

View File

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