Files
LaiToolManagementSystem/src/services/typing/dataInfo.d.ts
T

17 lines
256 B
TypeScript
Raw Normal View History

2025-05-15 14:05:03 +08:00
declare namespace DataInfoModel {
type QueryDataInfoData = {
collection: DataInfoBase[];
current: number;
total: number;
}
interface DataInfoBase {
id: string;
type: number;
dataString: string;
createdTime: Date;
}
}