@etsoo/smarterp-core
Version:
TypeScript APIs for SmartERP Core
30 lines (26 loc) • 369 B
text/typescript
/**
* Name data
* 姓名数据
*/
export type NameData = {
/**
* Family name
* 姓氏
*/
familyName?: string;
/**
* Given name
* 名
*/
givenName?: string;
/**
* Latin family name
* 拉丁姓(拼音)
*/
latinFamilyName?: string;
/**
* Latin given name
* 拉丁名(拼音)
*/
latinGivenName?: string;
};