2 Commits b3a420f8df ... 31dc60af8f

Autore SHA1 Messaggio Data
  zhenghongfeng 31dc60af8f Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon 3 anni fa
  zhenghongfeng 82710f85de feat(types): bookmatk和editLog增加一个institution 3 anni fa
2 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  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 {