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