班级相关
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
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_taskandques_reply")
|
||||
public class ClassTaskAndQuesReply {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer relationId;
|
||||
|
||||
private String type;//类型0任务1课后题
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private String display;//是否展示 0否1是
|
||||
|
||||
private String content;
|
||||
|
||||
private String img;
|
||||
|
||||
private String scoreInfo;//打分情况
|
||||
|
||||
private String scoreSuccess;//是否已评分 0否1是
|
||||
|
||||
private double score;//分数
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
@TableField(exist = false)
|
||||
private Object createUser;
|
||||
}
|
||||
Reference in New Issue
Block a user