Explorar el Código

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

LuoHaoxuan hace 3 años
padre
commit
2656e8db50
Se han modificado 1 ficheros con 1 adiciones y 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;
   }[];
 }