export interface IMaterial { /** * 标识 * * @author tony001 * @date 2025-02-28 11:02:45 * @type {string} */ id: string; /** * 类型 * * @author tony001 * @date 2025-02-27 18:02:54 * @type {string} */ type: string; /** * 数据 * * @author tony001 * @date 2025-02-28 10:02:21 * @type {object} */ data: object; /** * 元数据 * * @author tony001 * @date 2025-02-28 10:02:42 * @type {object} */ metadata: object; }