| | |
| | | |
| | | |
| | | /** |
| | | * Ժϵ |
| | | * 院系 |
| | | * @author ody.yuan |
| | | * |
| | | */ |
| | |
| | | @Column(name="COLLEGE_ID", unique=true, nullable=false, length=32) |
| | | private String collegeId; |
| | | |
| | | /** 院系名称 */ |
| | | /** 院系名称 */ |
| | | @Column(name="NAME",length=150) |
| | | private String name; |
| | | |
| | | /** 全称 */ |
| | | /** 全称 */ |
| | | @Column(name="FULL_NAME",length=255) |
| | | private String fullName; |
| | | |
| | | /** 编码 */ |
| | | /** 编码 */ |
| | | @Column(name="CODE",length=50) |
| | | private String code; |
| | | |
| | | /** 描述 */ |
| | | /** 描述 */ |
| | | @Column(name="CONTENT",length=255) |
| | | private String content; |
| | | |
| | | /** 类型:本科、专科、硕士、博士 */ |
| | | /** 类型:本科、专科、硕士、博士 */ |
| | | @Column(name="TYPE") |
| | | private short type; |
| | | |
| | | /** 类型:2为院、3为系 */ |
| | | /** 类型:2为院、3为系 */ |
| | | @Column(name="LEVEL_TYPE") |
| | | private short levelType; |
| | | |
| | | /** 地址 */ |
| | | /** 地址 */ |
| | | @Column(name="ADDRESS",length=255) |
| | | private String address; |
| | | |
| | | /** 联系人 */ |
| | | /** 联系人 */ |
| | | @Column(name="CONTACTOR",length=64) |
| | | private String contactor; |
| | | |
| | | /** 电话 */ |
| | | /** 电话 */ |
| | | @Column(name="TEL", length=50) |
| | | private String tel; |
| | | |
| | | /** 网址 */ |
| | | /** 网址 */ |
| | | @Column(name="WEBSITE", length=50) |
| | | private String website; |
| | | |
| | | /** ԺУID */ |
| | | /** 院校ID */ |
| | | @Column(name="ORG_ID", length=32) |
| | | private String orgId; |
| | | |
| | | /** 父院系ID */ |
| | | /** 父院系ID */ |
| | | @Column(name="PARENT_COLLEGE_ID", length=32) |
| | | private String parentCollegeId; |
| | | |
| | | /** 科目ID |
| | | /** 科目ID |
| | | @Column(name="CATEGORY_ID", length=32) |
| | | private String categoryId; */ |
| | | |