|
|
@@ -1,5 +1,15 @@
|
|
|
// 造价文件信息
|
|
|
export interface ICostInfo {
|
|
|
+ constructionName: string;
|
|
|
+ constructionID: string;
|
|
|
+ orgFee: string; // 原报金额
|
|
|
+ conclusionFee: string; // 报审金额
|
|
|
+ billCheckPercentOfPass: string; // 清单检测合格率
|
|
|
+ isBillCheckPassed: boolean; // 清单检测是否通过(可能是多项目)
|
|
|
+ minPassRate: number; // 合格率线
|
|
|
+}
|
|
|
+
|
|
|
+export interface ICostInfoFromFormily {
|
|
|
orgFee: number; // 送审金额
|
|
|
conclusionFee: number; // 审结金额
|
|
|
dynamicFee: number; // 动态金额
|
|
|
@@ -32,4 +42,7 @@ export enum BusinessFee {
|
|
|
// 预留金
|
|
|
PROVISIONAL = 'provisionalFee',
|
|
|
}
|
|
|
-// test
|
|
|
+
|
|
|
+export interface testAutoBuild {
|
|
|
+ a: string;
|
|
|
+}
|