Explorar el Código

feat(types): 增加IApostilleFormData接口

LuoHaoxuan hace 3 años
padre
commit
cbac2dd3ae
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  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[];
+  };
+}