派生自 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
package com.qxueyou.scc.org.model;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 机构科目以及类型数据
 * @author zhiyong
 *
 */
public class OrgCourseData implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 655858651902701073L;
 
    /** 科目类型 */
    List<OrgCourseCategory> categorys;
    
    /** 科目*/
    List<OrgCollegeCourse> courses;
 
    public List<OrgCourseCategory> getCategorys() {
        return categorys;
    }
 
    public void setCategorys(List<OrgCourseCategory> categorys) {
        this.categorys = categorys;
    }
 
    public List<OrgCollegeCourse> getCourses() {
        return courses;
    }
 
    public void setCourses(List<OrgCollegeCourse> courses) {
        this.courses = courses;
    }
    
}