Просмотр исходного кода

feat(types): 指标中增加编办信息

zhangweicheng 3 лет назад
Родитель
Сommit
65bb36a4ea
2 измененных файлов с 2 добавлено и 0 удалено
  1. 1 0
      types/src/interface/bill.ts
  2. 1 0
      types/src/interface/project.ts

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

@@ -331,6 +331,7 @@ export interface IFBIndex {
   minUnitPrice?: string;
   maxUnitPrice?: string;
   fees?: IFees; // 费用字段
+  compilationID?: string;
 }
 export interface IBillIndex extends IFBIndex {
   classCode: string; // 类别别名

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

@@ -483,5 +483,6 @@ export interface ICommonIndex {
   quantity?: string;
   composite: string; // 综合指标
   engineeringCost: number;
+  compilationID?: string; // 增加保存编办ID
   dynamicIndex: Record<string, string>; // 动态指标,年-月为key  这里的值 保存的是动态总造价,动态的综合指标实时算,前端动态计算时不方便拿quantity
 }