Explorar o código

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

lipk %!s(int64=3) %!d(string=hai) anos
pai
achega
7cde4d4f03
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      types/src/interface/editLog.ts

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

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