| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.Version; |
| | | import com.ycl.jxkg.domain.base.AbsEntity; |
| | | import lombok.Data; |
| | | |
| | |
| | | /** 会议封面 */ |
| | | private String meetCover; |
| | | |
| | | @TableField("student_ids") |
| | | /** 学生id */ |
| | | private String studentIds; |
| | | @TableField("classes_id") |
| | | /** 班级id */ |
| | | private Integer classesId; |
| | | |
| | | @TableField("create_user") |
| | | /** 创建人 */ |
| | |
| | | /** 状态 0/1/2 未开始/进行中/已结束 */ |
| | | private Integer status; |
| | | |
| | | |
| | | @Version |
| | | private Integer updateVersion; |
| | | } |