Explorar o código

feat(types): 修改IExecutor的members字段的approvalTime属性类型为number | string

LuoHaoxuan %!s(int64=3) %!d(string=hai) anos
pai
achega
2656e8db50
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      types/src/interface/process.ts

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

@@ -128,7 +128,7 @@ export interface IExecutor {
   members?: {
     ID: string;
     approvalStatus: string;
-    approvalTime: number;
+    approvalTime: number | string;
     approvalComment: string;
   }[];
 }