refactor : 重构岗位入库监测详情

This commit is contained in:
bin
2025-11-11 15:39:37 +08:00
parent 2175fd2020
commit 3162989804
4 changed files with 123 additions and 199 deletions

View File

@@ -1,4 +1,14 @@
declare namespace API.StorageDetection {
export interface StorageDetailItem {
detailId?: string;
websiteId?: string;
websiteName?: string;
successNumber?: string;
failedNumber?: string;
storageDetail?: string;
storageTime?: string;
}
export interface StorageItem {
detectionId?: string;
storageDate?: string;
@@ -7,6 +17,7 @@ declare namespace API.StorageDetection {
storageDetail?: string;
websiteId?: string;
websiteName?: string;
details?: StorageDetailItem[];
}
export interface AddParams {
@@ -35,4 +46,4 @@ declare namespace API.StorageDetection {
total: number;
rows: Array<StorageItem>;
}
}
}