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;
|
}
|
|
}
|