|
@@ -37,7 +37,7 @@ export interface IBaseGlj {
|
|
|
code: string;
|
|
code: string;
|
|
|
name: string;
|
|
name: string;
|
|
|
specs?: string;
|
|
specs?: string;
|
|
|
- type: number;
|
|
|
|
|
|
|
+ type: GljType;
|
|
|
unit: string;
|
|
unit: string;
|
|
|
[key: string]: any;
|
|
[key: string]: any;
|
|
|
}
|
|
}
|
|
@@ -84,7 +84,7 @@ export interface IComponent {
|
|
|
unit: string; // 单位
|
|
unit: string; // 单位
|
|
|
name: string; // 名称
|
|
name: string; // 名称
|
|
|
code: string; // 对应工料机code
|
|
code: string; // 对应工料机code
|
|
|
- type: number; // 工料机类型
|
|
|
|
|
|
|
+ type: GljType; // 工料机类型
|
|
|
model?: number; // 机型
|
|
model?: number; // 机型
|
|
|
from: fromType; // std, cpt 来自标准工料机库、补充工料机库
|
|
from: fromType; // std, cpt 来自标准工料机库、补充工料机库
|
|
|
}
|
|
}
|
|
@@ -104,7 +104,7 @@ export interface IProjectGlj {
|
|
|
nTaxEqp: boolean; // 不计税设备 { type: boolean; default: false }
|
|
nTaxEqp: boolean; // 不计税设备 { type: boolean; default: false }
|
|
|
adjCoe?: number; // 调整系数ID
|
|
adjCoe?: number; // 调整系数ID
|
|
|
specs: string; // 规格型号
|
|
specs: string; // 规格型号
|
|
|
- type: number; // 类型
|
|
|
|
|
|
|
+ type: GljType; // 类型
|
|
|
model?: number; // 机型
|
|
model?: number; // 机型
|
|
|
unit: string; // 单位
|
|
unit: string; // 单位
|
|
|
isAdd: boolean; // 是否新增
|
|
isAdd: boolean; // 是否新增
|