班级相关
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
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_task")
|
||||
public class ClassTask {
|
||||
|
||||
@TableId
|
||||
private Integer id;
|
||||
|
||||
private Integer classId;
|
||||
|
||||
private Integer userId;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
private String type;//类型 0班内任务1医案2心得
|
||||
|
||||
private String display;//是否展示 0否1是
|
||||
|
||||
private String title;
|
||||
|
||||
private String content;
|
||||
|
||||
private String img;
|
||||
|
||||
private String scoreSuccess;//是否已评分 0否1是
|
||||
|
||||
private double score;//分数
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
@TableField(exist = false)
|
||||
private Object createUser;
|
||||
@TableField(exist = false)
|
||||
private boolean isReply;
|
||||
@TableField(exist = false)
|
||||
private Object otherInfo;
|
||||
}
|
||||
Reference in New Issue
Block a user