|
|
@@ -1,4 +1,4 @@
|
|
|
-import { IInfoPriceItem } from '.';
|
|
|
+import { IInfoKeyword, IInfoPriceItem } from '.';
|
|
|
import { FromType, ITreeScm, SupplyType } from './base';
|
|
|
|
|
|
// 工料机类型
|
|
|
@@ -181,6 +181,16 @@ export const GljModelName = {
|
|
|
4: '小',
|
|
|
};
|
|
|
|
|
|
+export interface IMatchedInfoPrice{
|
|
|
+ basePrice:string;
|
|
|
+ key: string;
|
|
|
+ keywordList: IInfoKeyword[];
|
|
|
+ marketPrice: string;
|
|
|
+ name: string;
|
|
|
+ specs: string;
|
|
|
+ unit: string;
|
|
|
+}
|
|
|
+
|
|
|
export interface IProjectGlj {
|
|
|
ID: string;
|
|
|
gljID: string; // 工料机ID
|
|
|
@@ -229,7 +239,7 @@ export interface IProjectGlj {
|
|
|
infoPrice?: number | null; // 信息价
|
|
|
purchaseFeeRate?: number; // 采保费率
|
|
|
from: FromType; // std, cpt 来自标准工料机库、补充工料机库
|
|
|
- matchedInfoPrice?: IInfoPriceItem|null; // 材料检查后匹配到的信息价
|
|
|
+ matchedInfoPrice?: IMatchedInfoPrice|null; // 材料检查后匹配到的信息价
|
|
|
}
|
|
|
|
|
|
export interface IProjectGljs {
|