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

feat(types): 文件模板类型修改

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

+ 3 - 1
types/src/interface/matter.ts

@@ -72,7 +72,7 @@ export interface IYsProfileTemplate {
   gatherID: string;
   businessType: BusinessTypeKey;
   name: string;
-  sort: string;
+  sort: number;
   enable: boolean;
   required: boolean;
   folder: boolean;
@@ -84,6 +84,8 @@ export interface IYsProfileTemplate {
 export interface IGatherYsProfileTemplate extends IYsProfileTemplate {
   businessID: string;
   matterID?: string;
+  matterListID?: string;
+  approvalID?: string;
 }
 
 export interface IDynamicStep {