UNPKG

@etsoo/smarterp-core

Version:

TypeScript APIs for SmartERP Core

30 lines (26 loc) 331 B
/** * Custom resource item * 自定义资源项 */ export type OrgResourceItem = { /** * Culture * 文化 */ culture: string; /** * Title * 标题 */ title?: string; /** * Description * 描述 */ description?: string; /** * Json data * JSON 数据 */ jsonData?: string; };