Sfoglia il codice sorgente

feat(types): 添加组成物指标类型

zhangweicheng 3 anni fa
parent
commit
bf56549e27
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. 7 0
      types/src/interface/bill.ts

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

@@ -1,3 +1,4 @@
+import { IComponent } from './glj';
 import { FileType } from './project';
 import { IElfItem } from './billGuide';
 import { IBRBase, INumFileRef, ITreeScm } from './base';
@@ -254,6 +255,11 @@ export interface IBillClass {
   errorRationIDs: number[]; // 错套定额ID
 }
 
+export interface IIndexComponent extends IComponent {
+  marketPrice: string;
+  basePrice: string;
+}
+
 export interface IBillIndexGlj {
   code: string;
   name: string;
@@ -263,6 +269,7 @@ export interface IBillIndexGlj {
   marketPrice: string;
   basePrice: string;
   rationQuantity: string;
+  components?: IIndexComponent[];
 }
 
 export interface IBillIndexRation {