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