瀏覽代碼

feat(types): 增加IApostilleFormData接口

LuoHaoxuan 3 年之前
父節點
當前提交
cbac2dd3ae
共有 1 個文件被更改,包括 11 次插入0 次删除
  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[];
+  };
+}