46 lines
941 B
Java
46 lines
941 B
Java
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 classId;
|
|
|
|
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 int scoreSuccess;//已评分人数
|
|
|
|
private double score;//分数
|
|
|
|
private Date createTime;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
@TableField(exist = false)
|
|
private Object createUser;
|
|
}
|