UNPKG

@etsoo/smarterp-crm

Version:

TypeScript APIs for SmartERP Customer Relationship Management (CRM)

30 lines (26 loc) 290 B
/** * Person degree * 个人学位 */ export enum PersonDegree { /** * Pre-bachelor * 副学士 */ PreBachelor = 1, /** * Bachelor * 学士 */ Bachelor = 2, /** * Master * 硕士 */ Master = 3, /** * Doctor * 博士 */ Doctor = 4 }