浏览代码

feat(types): 调价字段

chenshilong 4 年之前
父节点
当前提交
e7fe10c6b6
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. 7 2
      types/src/interface/base.ts

+ 7 - 2
types/src/interface/base.ts

@@ -262,7 +262,12 @@ export interface IBRBase {
   quantityEXP?: string;
   quantityEXP?: string;
   quantityDetails?: IQuantityDetail[]; // 工程量明细 -- 原先保存在另外的表中
   quantityDetails?: IQuantityDetail[]; // 工程量明细 -- 原先保存在另外的表中
   fees?: any; // 费用字段
   fees?: any; // 费用字段
-  gljQtyCoe?: IGljQtyCoe; // 工料机消耗量调整系数字段
-  rationQtyCoe?: number; // 子目工程量调整系数
   bookmarks?: IBookmark[]; // 书签批注
   bookmarks?: IBookmark[]; // 书签批注
+
+  targetUnitPrice?: number; // 调价:目标综合单价
+  targetTotalFee?: number; // 调价:目标综合合价
+  readjustUnitPrice?: number; // 调价:调整后综合单价
+  readjustTotalFee?: number; // 调价:调整后综合合价
+  rationQtyCoe?: number; // 调价:子目工程量调整系数
+  gljQtyCoe?: IGljQtyCoe; // 调价:工料机消耗量调整系数
 }
 }