Browse Source

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

zhenghongfeng 3 years ago
parent
commit
82710f85de
2 changed files with 2 additions and 0 deletions
  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;
   createTime: number;
   telNo: string;
   telNo: string;
   kind: BRType;
   kind: BRType;
+  institution?: string;
 }
 }
 // 修改书签
 // 修改书签
 export interface ISetBookmark {
 export interface ISetBookmark {

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

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