Просмотр исходного кода

feat(types): 多文件区间来源权限配置

vian 3 лет назад
Родитель
Сommit
ee0386cef8
1 измененных файлов с 7 добавлено и 0 удалено
  1. 7 0
      types/src/interface/matter.ts

+ 7 - 0
types/src/interface/matter.ts

@@ -1,3 +1,4 @@
+import { IScopeType } from './process';
 import { BusinessTypeKey, MatterTypeKey } from './gather';
 
 // 审批金额汇总组件阶段数据
@@ -31,7 +32,13 @@ export interface IMatter {
   auditAmountConfig?: IAuditSummaryConfig[];
   // 审核意见组件配置
   auditCommentsConfig?: IAuditCommentConfig;
+
+  // 多文件组件合格率设置
   settlementPassingRate?: number;
+  // 多文件组件区间来源可见性范围
+  settlementSourceScope?: IScopeType[];
+  // 多文件组件区间来源项目名称可见性范围
+  settlementProjectScope?: IScopeType[];
 }
 
 export interface IGatherMatter extends IMatter {