Files
nuttyreading-java/src/main/java/com/peanut/modules/common/entity/ClassExamUser.java
2024-08-30 09:04:10 +08:00

30 lines
585 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;
@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;
@TableLogic
private Integer delFlag;
}