Przeglądaj źródła

feat(types): 增加IApostilleFormData接口

LuoHaoxuan 3 lat temu
rodzic
commit
cbac2dd3ae
1 zmienionych plików z 11 dodań i 0 usunięć
  1. 11 0
      types/src/interface/process.ts

+ 11 - 0
types/src/interface/process.ts

@@ -708,3 +708,14 @@ export interface IBudgetEstimateTableItem {
   // 审核状态文本
   approvalStatusText?: string;
 }
+
+export interface IApostilleFormData {
+  permissions: Record<string, string[]>;
+  users: string[];
+  afterApostille: 'next' | 'me';
+  canCollaborate: boolean;
+  collaborators: {
+    user?: string[];
+    institution?: string[];
+  };
+}