Browse Source

fix(types): 业务金额枚举动态金额字段问题

vian 3 years ago
parent
commit
2414b200a7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      types/src/interface/business.ts

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

@@ -27,7 +27,7 @@ export enum BusinessFee {
   // 审减金额
   // 审减金额
   DEC = 'decFee',
   DEC = 'decFee',
   // 动态金额(当前最新金额)
   // 动态金额(当前最新金额)
-  ORG_FEE = 'dynamicFee',
+  DYNAMIC = 'dynamicFee',
   // 预留金
   // 预留金
   PROVISIONAL = 'provisionalFee',
   PROVISIONAL = 'provisionalFee',
 }
 }