Blame view

CourseTreeDO.java 1.44 KB
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
package com.meishu.model;

import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.meishu.util.BaseModel;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.util.List;

/**
 * <p>
 * 
 * </p>
 *
 * @author Tuyp
 * @since 2021-05-12
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("course_tree")
public class CourseTreeDO extends BaseModel {

    private static final long serialVersionUID = 1L;

    @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    /**
     * 知识树id,对应subject_tree的主键
     */
    private Long treeId;

    /**
     * 课程id
     */
    private Long courseId;

    /**
     * 状态 0:禁用  1:启用
     */
    private String status;

    /**
     * 父节点(tree_id的父节点)
     */
    private Long parentId;

    /**
     * 0:在学生端不展示  1:在学生端展示
     */
    private String isShow;

    /**
     * 章节
     */
    private Integer chapterId;

    /**
     * 知识点节点
     */
    private String treeNode;

    /**
     * 知识点名称
     */
    private String treeName;

    /**
     * 写程序使用,数据库不存值
     */
    private List<CourseTreeDO> children;

    /**
     * 子节点个数
     */
    private Integer childNodeCounts;

    /**
     * 课程顺序
     */
    private Integer treeOrder;

}