소스 검색

feat(types): 建设项目实时金额

vian 3 년 전
부모
커밋
3bbc8247ca
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      types/src/interface/project.ts

+ 11 - 0
types/src/interface/project.ts

@@ -532,3 +532,14 @@ export interface ICommonIndex {
   compilationID?: string; // 增加保存编办ID
   dynamicIndex: Record<string, string>; // 动态指标,年-月为key  这里的值 保存的是动态总造价,动态的综合指标实时算,前端动态计算时不方便拿quantity
 }
+
+// 建设项目实时金额
+export interface IConstructionFeeItem {
+  cost: number;
+  provisional: number;
+  constructions: {
+    fileType: FileType;
+    ID: string;
+    name: string;
+  }[];
+}