package com.ycl.jxkg.domain.entity; import lombok.Data; import java.util.Date; /** * 教育资源 * @author:flq * @date:2024/6/18 10:53 */ @Data public class EducationResource { private Integer id; /** 文件类型 */ private String contentType; /** 文件地址 */ private String contentUrl; /** 所属学科 */ private Integer subjectId; /** 班级 */ private Integer classId; /** 主题简介 */ private String introduction; /** 附件 */ private String attachment; private Integer createUser; private Date createTime; private Date updateTime; private Integer deleted; }