UNPKG

@etsoo/smarterp-core

Version:

TypeScript APIs for SmartERP Core

37 lines (36 loc) 535 B
/** * Document query data * 文档查询数据 */ export type DocumentQueryData = { /** * Id * 编号 */ id: number; /** * Organization name * 机构名称 */ orgName?: string; /** * Kind * 类型 */ kind: string; /** * Title * 标题 */ title: string; /** * Has parameters or not * 是否有参数 */ hasParameters: boolean; /** * Refresh time * 刷新时间 */ refreshTime: Date | string; };