|
|
@@ -290,6 +290,13 @@ export interface IFees {
|
|
|
[key: string]: IFee;
|
|
|
}
|
|
|
|
|
|
+export enum BaseEXP {
|
|
|
+ QDL = 'QDL',
|
|
|
+ ZXGCLHJ = 'ZXGCLHJ', // 子项工程量合计
|
|
|
+ GCLMXHJ = 'GCLMXHJ',
|
|
|
+ MBGCL = 'MBGCL', // 模板工程量
|
|
|
+}
|
|
|
+
|
|
|
// 定额和清单共有的属性,造价书中很多地方需要
|
|
|
export interface IBRBase {
|
|
|
ID: string;
|
|
|
@@ -302,7 +309,7 @@ export interface IBRBase {
|
|
|
code?: string;
|
|
|
name?: string;
|
|
|
quantity?: number;
|
|
|
- quantityEXP?: string;
|
|
|
+ quantityEXP?: BaseEXP | string;
|
|
|
quantityDetails?: IQuantityDetail[]; // 工程量明细 -- 原先保存在另外的表中
|
|
|
// 是否记取面积增加费
|
|
|
areaIncreaseFee?: boolean | null; // { type: Schema.Types.Mixed; default: false }; // true 是,false否,null 不确定,三个状态
|