| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** 类型:1本科 2专科 3硕士 4博士 */ |
| | | /** 类型:1本科 2专科 3硕士 4博士 */ |
| | | public static final short ORG_COURSE_LEVEL_UNDERGRADUATE = 1; |
| | | |
| | | public static final short ORG_COURSE_LEVEL_FACULTY = 2; |
| | |
| | | @Column(name="COURSE_ID", unique=true, nullable=false, length=32) |
| | | private String courseId; |
| | | |
| | | /** 名称 */ |
| | | /** 名称 */ |
| | | @Column(name="NAME", length=255) |
| | | private String name; |
| | | |
| | | /** 编码、代码 */ |
| | | /** 编码、代码 */ |
| | | @Column(name="CODE",length=64) |
| | | private String code; |
| | | |
| | | /** 科目ID */ |
| | | /** 科目ID */ |
| | | @Column(name="COURSE_CATEGORY_ID", length=32) |
| | | private String courseCategoryId; |
| | | |
| | | /** 科目名称 */ |
| | | /** 科目名称 */ |
| | | @Column(name="COURSE_CATEGORY_NAME", length=255) |
| | | private String courseCategoryName; |
| | | |
| | | /** 内容 */ |
| | | /** 内容 */ |
| | | @Column(name="CONTENT") |
| | | private String content; |
| | | |
| | | /** 类型:1本科 2专科 3硕士 4博士 */ |
| | | /** 类型:1本科 2专科 3硕士 4博士 */ |
| | | @Column(name="COURSE_TYPE") |
| | | private short courseType; |
| | | |
| | |
| | | @JsonIgnore |
| | | private OrgCourseCategory orgCourseCategory; |
| | | |
| | | /** 是否推广 false:不推广 true:推广 */ |
| | | /** 是否推广 false:不推广 true:推广 */ |
| | | @Column(name="EXTENDED") |
| | | private boolean extended; |
| | | |