Bläddra i källkod

feat(types): approval类型修改

lipk 2 år sedan
förälder
incheckning
e3caa5079f
1 ändrade filer med 10 tillägg och 0 borttagningar
  1. 10 0
      types/src/interface/process.ts

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

@@ -370,6 +370,11 @@ export interface IScopeType {
   value: string;
 }
 
+interface monitorPermissionItem {
+  type: string;
+  value: string;
+}
+
 export interface IApproval {
   ID: string;
   name: string;
@@ -382,6 +387,11 @@ export interface IApproval {
   businessType?: BusinessTypeKey;
   matterListID?: string;
   institutionID?: string;
+  monitorPermission?: {
+    approvalBrief: monitorPermissionItem[];
+    approvalLog: monitorPermissionItem[];
+    approvalProgress: monitorPermissionItem[];
+  };
 }
 
 export enum ApprovalStatus {