ソースを参照

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

zhenghongfeng 3 年 前
コミット
af2e904a28
2 ファイル変更2 行追加0 行削除
  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 {