import { IBzCalendarNode } from '../ibz-calendar-node/ibz-calendar-node'; /** * 资源节点 * * @export * @interface IBzResourceNode */ export interface IBzResourceNode { /** * 资源标识 * * @type {string} * @memberof IBzResourceNode */ id: string; /** * 资源名称 * * @type {string} * @memberof IBzResourceNode */ text: string; /** * 资源内所有节点 * * @type {IBzCalendarNode[]} * @memberof IBzResourceNode */ items?: IBzCalendarNode[]; }