Browse Source

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

lipk 2 years ago
parent
commit
927bfb81ff
1 changed files with 2 additions and 2 deletions
  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 };
   };
 }