فهرست منبع

feat(types): 造价文件信息

vian 3 سال پیش
والد
کامیت
687ca73590
2فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 7 0
      types/src/interface/business.ts
  2. 1 0
      types/src/interface/index.ts

+ 7 - 0
types/src/interface/business.ts

@@ -0,0 +1,7 @@
+// 造价文件信息
+export interface ICostInfo {
+  constructionID: string;
+  orgFee: string; // 原报金额
+  conclusionFee: string; // 报审金额
+  billCheckPercentOfPass: string; // 清单检测合格率
+}

+ 1 - 0
types/src/interface/index.ts

@@ -35,3 +35,4 @@ export * from './matter';
 export * from './loginLog';
 export * from './budgetData';
 export * from './approvalStatus';
+export * from './business';