瀏覽代碼

feat(types): 流程后事项权限

lipk 2 年之前
父節點
當前提交
d785d9da7d
共有 2 個文件被更改,包括 8 次插入2 次删除
  1. 6 0
      types/src/interface/financialProject.ts
  2. 2 2
      types/src/interface/process.ts

+ 6 - 0
types/src/interface/financialProject.ts

@@ -58,6 +58,12 @@ export interface IFinancialProject {
     approvalProgress: IScopeType[];
   };
   deleteTime?: number; // 删除时间
+  completedExecutor?: string[];
+  completedPermission?: {
+    matterID: string;
+    executorID: string;
+    permission: string[];
+  }[];
 }
 
 // 财审项目信息

+ 2 - 2
types/src/interface/process.ts

@@ -404,12 +404,12 @@ export interface IApproval {
     autoCode?: { type: ECodeRule; value?: string; digits?: string };
   };
   sort?: number;
-  completedExecutor?: string[];
+  completedExecutor?: string[]; // 流程结束后执行者
   completedPermission?: {
     matterID: string;
     executorID: string;
     permission: string[];
-  }[];
+  }[]; // 流程结束后权限
 }
 
 export enum ApprovalStatus {