@etsoo/smarterp-crm
Version:
TypeScript APIs for SmartERP Customer Relationship Management (CRM)
132 lines (111 loc) • 1.8 kB
text/typescript
/**
* Person education
* 个人学历
*/
export enum PersonEducation {
/**
* Primary school
* 小学
*/
PrimarySchool = 1,
/**
* Year 2
* 小学2年级
*/
PrimarySchool2 = 2,
/**
* Year 3
* 小学3年级
*/
PrimarySchool3 = 3,
/**
* Year 4
* 小学4年级
*/
PrimarySchool4 = 4,
/**
* Year 5
* 小学5年级
*/
PrimarySchool5 = 5,
/**
* Year 6
* 小学6年级
*/
PrimarySchool6 = 6,
/**
* Middle school
* 初中
*/
MiddleSchool = 20,
/**
* Year 7
* 初中1年级
*/
MiddleSchool1 = 27,
/**
* Year 8
* 初中2年级
*/
MiddleSchool2 = 28,
/**
* Year 9
* 初中3年级
*/
MiddleSchool3 = 29,
/**
* High school
* 高中
*/
HighSchool = 40,
/**
* Year 10
* 高中1年级
*/
HighSchool1 = 51,
/**
* Year 11
* 高中2年级
*/
HighSchool2 = 52,
/**
* Year 12
* 高中3年级
*/
HighSchool3 = 53,
/**
* Diploma Graduate
* 大专毕业
*/
University2 = 82,
/**
* Graduated from Five Types of Higher Education (Self-study Exam, Open University, Night University, Party School, Correspondence Course)
* 五大学历毕业(自考、电大、夜大、党校、函授)
*/
University4 = 84,
/**
* University Student
* 大学在读
*/
University6 = 86,
/**
* Bachelor's Graduate (No Degree)
* 大学本科毕业(无学士学位)
*/
University8 = 88,
/**
* Bachelor's Graduate (With Degree)
* 大学本科毕业且获得学士学位
*/
University10 = 90,
/**
* Postgraduate (No Degree)
* 研究生毕业(无学位证书)
*/
University12 = 92,
/**
* Master’s Graduate
* 硕士学位毕业
*/
University14 = 94
}