|
@@ -171,6 +171,15 @@ export interface ICptComponent {
|
|
|
from: fromType;
|
|
from: fromType;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export interface IBaseGlj {
|
|
|
|
|
+ code: string;
|
|
|
|
|
+ name: string;
|
|
|
|
|
+ specs?: string;
|
|
|
|
|
+ type: number;
|
|
|
|
|
+ unit: string;
|
|
|
|
|
+ [key: string]: any;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export interface IBaseRationGlj {
|
|
export interface IBaseRationGlj {
|
|
|
code: string;
|
|
code: string;
|
|
|
name: string;
|
|
name: string;
|
|
@@ -211,6 +220,8 @@ export interface IRationGlj {
|
|
|
customQuantity?: number;
|
|
customQuantity?: number;
|
|
|
rationQuantity?: number;
|
|
rationQuantity?: number;
|
|
|
tenderQuantity?: number; // 调整后消耗量
|
|
tenderQuantity?: number; // 调整后消耗量
|
|
|
|
|
+ marketPrice?: number; // 市场价 - 不保存至数据库
|
|
|
|
|
+ basePrice?: number; // 定额价 - 不保存至数据库
|
|
|
createType: gljCreateType; // normal、add、replace 正常、添加工料机、替换工料机
|
|
createType: gljCreateType; // normal、add、replace 正常、添加工料机、替换工料机
|
|
|
from: fromType; // std, cpt 来自标准工料机库、补充工料机库
|
|
from: fromType; // std, cpt 来自标准工料机库、补充工料机库
|
|
|
}
|
|
}
|