Parcourir la source

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

zhenghongfeng il y a 4 ans
Parent
commit
af2e904a28
2 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 1 0
      types/src/interface/bill.ts
  2. 1 0
      types/src/interface/editLog.ts

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

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

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

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