派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
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
package com.qxueyou.scc.org.model;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 机构层级返回数据
 * 
 * @author zhiyong
 *
 */
public class OrgCourseCateData implements Serializable {
    
    /**
     * 
     */
    private static final long serialVersionUID = 2066875267194349324L;
 
    private String categoryId;
 
    private short categoryLevel;
 
    private String categoryName;
    
    private String parentCategoryId;
 
    private List<OrgCourseCateData> childrenList;
    
    private List<OrgCourseJsonData> lstCourses;
 
    public String getCategoryId() {
        return categoryId;
    }
 
    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId;
    }
 
    public short getCategoryLevel() {
        return categoryLevel;
    }
 
    public void setCategoryLevel(short categoryLevel) {
        this.categoryLevel = categoryLevel;
    }
 
    public String getCategoryName() {
        return categoryName;
    }
 
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
 
    public String getParentCategoryId() {
        return parentCategoryId;
    }
 
    public void setParentCategoryId(String parentCategoryId) {
        this.parentCategoryId = parentCategoryId;
    }
 
    public List<OrgCourseCateData> getChildrenList() {
        return childrenList;
    }
 
    public void setChildrenList(List<OrgCourseCateData> childrenList) {
        this.childrenList = childrenList;
    }
 
    public List<OrgCourseJsonData> getLstCourses() {
        return lstCourses;
    }
 
    public void setLstCourses(List<OrgCourseJsonData> lstCourses) {
        this.lstCourses = lstCourses;
    }
 
}