// 定义数据存储接口 export interface DataStorage { storeData(data: any[], schema: any): Promise // 存储数据,需要指定数据结构 }