@@ -392,3 +392,16 @@ export interface ISelectGljResult {
}
/* 选择人材机相关 ↑ */
+
+// 补充定额库中,需要显示用的补充定额人材机
+export interface ICptDisplayRationGlj {
+ ID: string | number; // 人材机ID(标准为number,补充为string)
+ code: string;
+ name: string;
+ unit: string;
+ specs?: string;
+ basePrice: number;
+ consumeAmt: number;
+ from: FromType;
+ type: GljType;
+}