| | |
| | | @JsonIgnore |
| | | private String updator; |
| | | |
| | | /** 类型:(1.职业培训 2.学历教育3.企业内训 4.活动沙龙5.代理机构) */ |
| | | /** 类型:(1.职业培训 2.学历教育3.企业内训 4.活动沙龙5.代理机构) */ |
| | | @Column(name="TYPE") |
| | | private Short type; |
| | | |
| | | /** 编码 */ |
| | | /** 编码 */ |
| | | @Column(name="CODE", length=100) |
| | | private String code; |
| | | |
| | | @Column(name="IMG_PATH", length=255) |
| | | private String imgPath; |
| | | |
| | | /** 本科、专科、研究生、博士生 */ |
| | | /** 本科、专科、研究生、博士生 */ |
| | | @Column(name="CATEGORY_TYPE", length=6) |
| | | private Short categoryType; |
| | | |
| | |
| | | @Column(name="TOP_ORG_ID", length=32) |
| | | private String topOrgId; |
| | | |
| | | /**分类层级编码(用于方便查找层级结构) */ |
| | | /**分类层级编码(用于方便查找层级结构) */ |
| | | @Column(name="LEVEL_CODE", length=255) |
| | | private String levelCode; |
| | | |
| | |
| | | |
| | | |
| | | |
| | | //新增映射 |
| | | //新增映射 |
| | | @OneToMany(fetch = FetchType.LAZY, mappedBy = "category") |
| | | @JsonIgnore |
| | | private List<OrgCollegeCourse> courses; |