Просмотр исходного кода

feat(types): 编辑日志类型修改

lipk 3 лет назад
Родитель
Сommit
7cde4d4f03
1 измененных файлов с 2 добавлено и 1 удалено
  1. 2 1
      types/src/interface/editLog.ts

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

@@ -1,7 +1,7 @@
 import { GljType } from './glj';
 import { GljType } from './glj';
 import { CptModelName, SubModelName, ActionType, ActionName } from './base';
 import { CptModelName, SubModelName, ActionType, ActionName } from './base';
 
 
-export interface ILogDetail<T = any> {
+export interface ILogDetail {
   ID: string; // 自身ID
   ID: string; // 自身ID
   itemID: string; // 所编辑的行对应的ID,如定额ID,清单ID
   itemID: string; // 所编辑的行对应的ID,如定额ID,清单ID
   module: CptModelName | SubModelName; // 编辑的模块
   module: CptModelName | SubModelName; // 编辑的模块
@@ -19,6 +19,7 @@ export interface ILogDetail<T = any> {
   processID?: string; // 流程ID
   processID?: string; // 流程ID
   institution?: string; // 单位名称
   institution?: string; // 单位名称
   procunit?: string; // 流程环节
   procunit?: string; // 流程环节
+  procuAttr?: string; // 流程环节缩写
 }
 }
 
 
 export interface IEditLog {
 export interface IEditLog {