瀏覽代碼

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

lipk 2 年之前
父節點
當前提交
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 };
   };
 }