UNPKG

@etsoo/smarterp-crm

Version:

TypeScript APIs for SmartERP Customer Relationship Management (CRM)

28 lines (27 loc) 563 B
/** * Person degree * 个人学位 */ export var PersonDegree; (function (PersonDegree) { /** * Pre-bachelor * 副学士 */ PersonDegree[PersonDegree["PreBachelor"] = 1] = "PreBachelor"; /** * Bachelor * 学士 */ PersonDegree[PersonDegree["Bachelor"] = 2] = "Bachelor"; /** * Master * 硕士 */ PersonDegree[PersonDegree["Master"] = 3] = "Master"; /** * Doctor * 博士 */ PersonDegree[PersonDegree["Doctor"] = 4] = "Doctor"; })(PersonDegree || (PersonDegree = {}));