Sfoglia il codice sorgente

feat(types): 清单添加主要清单,锁定单价属性

zhangweicheng 4 anni fa
parent
commit
2b09a00996
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      types/src/interface/bill.ts

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

@@ -125,6 +125,8 @@ export interface IBill extends IBRBase {
   isAdd?: boolean; // 是否用户新增的清单
   isAdd?: boolean; // 是否用户新增的清单
   feeRateID?: string; // 费率ID
   feeRateID?: string; // 费率ID
   feeRate?: number; // 费率值
   feeRate?: number; // 费率值
+  mainBills?: boolean; // 主要清单
+  lockUnitPrice?: boolean; // 锁定单价
   [key: string]: any; // 剩下的之后补充
   [key: string]: any; // 剩下的之后补充
 }
 }