This commit is contained in:
2025-05-15 14:05:03 +08:00
parent e904ec2093
commit e448cf6c6b
21 changed files with 964 additions and 57 deletions
+17
View File
@@ -0,0 +1,17 @@
declare namespace DataInfoModel {
type QueryDataInfoData = {
collection: DataInfoBase[];
current: number;
total: number;
}
interface DataInfoBase {
id: string;
type: number;
dataString: string;
createdTime: Date;
}
}