فهرست منبع

feat(types): 增加显示用的补充定额人材机

vian 4 سال پیش
والد
کامیت
9be66574d5
1فایلهای تغییر یافته به همراه13 افزوده شده و 0 حذف شده
  1. 13 0
      types/src/interface/glj.ts

+ 13 - 0
types/src/interface/glj.ts

@@ -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;
+}