Browse Source

fix(types): process

qinlaiqiao 4 years atrás
parent
commit
b14754c4f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      types/src/interface/process.ts

+ 1 - 1
types/src/interface/process.ts

@@ -136,7 +136,7 @@ export interface ITodoProcessItem {
   reporterName: string; // 发起人名称
   lastID: string; // 上环节ID(暂定为上环节用户ID,之后可能为上环节ID)
   lastName: string; // 上环节名称(暂定为上环节用户名称,之后可能为上环节名称)
-  reportTime: string; // 上报时间
+  reportTime: number; // 上报时间
   lastStatus?: SimpleProcessStatus; // 上一环节的状态
   approvalStatus?: SimpleApprovalStatus; // 审批流程的状态
 }