@@ -347,3 +347,16 @@ export interface IProjectLog {
// 活动者ID
activityUserID: string;
}
+
+// 导入状态
+export enum ImportStatus {
+ IMPORTING = 0,
+ FINISH = 1,
+ FAIL = 3,
+}
+// 导入log
+export interface IImportLog {
+ status: ImportStatus;
+ errorMsg: string;