|
@@ -141,10 +141,12 @@ export interface IBill extends IBRBase {
|
|
|
engContent?: string; // 工程内容
|
|
engContent?: string; // 工程内容
|
|
|
serviceContent?: string; // 服务内容
|
|
serviceContent?: string; // 服务内容
|
|
|
claimVisa?: string; // 签证及索赔依据
|
|
claimVisa?: string; // 签证及索赔依据
|
|
|
- checkResult?: string; // 机器检测结果
|
|
|
|
|
|
|
+ checkFormResult?: string; // 形式检测结果
|
|
|
|
|
+ checkMaterialResult?: string; // 材料检测结果
|
|
|
priceScope?: IPriceScope; // 价格区间
|
|
priceScope?: IPriceScope; // 价格区间
|
|
|
classCode?: string; // 类别别名,清单经过机器检测后会加上
|
|
classCode?: string; // 类别别名,清单经过机器检测后会加上
|
|
|
- checkRationResult?:string;//机器检测结果(必套、选套、错套定额相关)
|
|
|
|
|
|
|
+ checkRationResult?: string; // 机器检测结果(必套、选套、错套定额相关)
|
|
|
|
|
+ checked?: boolean; // 是否已经进行清单检测过的清单,为true表式已经检测过了(用来计算通过率)
|
|
|
[key: string]: any; // 剩下的之后补充
|
|
[key: string]: any; // 剩下的之后补充
|
|
|
}
|
|
}
|
|
|
|
|
|