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

feat(types): IBookmark和ILogDetail增加一个procunit;

zhenghongfeng 3 лет назад
Родитель
Сommit
bcc9f090aa
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      types/src/interface/bill.ts
  2. 1 1
      types/src/interface/editLog.ts

+ 1 - 1
types/src/interface/bill.ts

@@ -110,7 +110,7 @@ export interface IBookmark {
   telNo: string;
   kind: BRType;
   institution?: string;
-  procunit?: number;
+  procunit?: string;
 }
 // 修改书签
 export interface ISetBookmark {

+ 1 - 1
types/src/interface/editLog.ts

@@ -18,7 +18,7 @@ export interface ILogDetail<T = any> {
   field?: string; // 修改的field
   processID?: string; // 流程ID
   institution?: string; // 单位名称
-  procunit?: number; // 流程环节
+  procunit?: string; // 流程环节
 }
 
 export interface IEditLog {