UNPKG

@etsoo/smarterp-core

Version:

TypeScript APIs for SmartERP Core

28 lines (27 loc) 406 B
import { UserIdentifierType } from "@etsoo/appscript"; /** * User identifier data * 用户标识数据 */ export type UserIdentifierData = { /** * Id * 编号 */ id: number; /** * Type * 类型 */ type: UserIdentifierType; /** * Value * 值 */ value: string; /** * Creation * 登记时间 */ creation: Date; };