소스 검색

feat(types): 规则位数字段修改

lipk 3 년 전
부모
커밋
927bfb81ff
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      types/src/interface/process.ts

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

@@ -398,9 +398,9 @@ export interface IApproval {
     approvalProgress: IScopeType[];
   };
   code?: {
-    rules: [{ type: ECodeRule; value?: string; digit?: string }];
+    rules: [{ type: ECodeRule; value?: string; digits?: string }];
     connector: string;
-    autoCode?: { type: ECodeRule; value?: string; digit?: string };
+    autoCode?: { type: ECodeRule; value?: string; digits?: string };
   };
 }