Procházet zdrojové kódy

feat(types): bookmatk和editLog增加一个institution

zhenghongfeng před 3 roky
rodič
revize
82710f85de
2 změnil soubory, kde provedl 2 přidání a 0 odebrání
  1. 1 0
      types/src/interface/bill.ts
  2. 1 0
      types/src/interface/editLog.ts

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

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

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

@@ -17,6 +17,7 @@ export interface ILogDetail<T = any> {
   oldValue?: string; // 旧值
   field?: string; // 修改的field
   processID?: string; // 流程ID
+  institution?: string; // 单位名称
 }
 
 export interface IEditLog {