Browse Source

feat(types): 清单添加费率字段

zhangweicheng 4 years ago
parent
commit
62c31f44be
1 changed files with 2 additions and 0 deletions
  1. 2 0
      types/src/interface/bill.ts

+ 2 - 0
types/src/interface/bill.ts

@@ -123,6 +123,8 @@ export interface IBill extends IBRBase {
   formulaValue?: number; // 基数计算的值
   tenderFormulaValue?: number; // 调价基数计算的值
   isAdd?: boolean; // 是否用户新增的清单
+  feeRateID?: string; // 费率ID
+  feeRate?: number; // 费率值
   [key: string]: any; // 剩下的之后补充
 }