|
|
@@ -258,6 +258,21 @@ export interface IStdGljTree extends ITreeScm {
|
|
|
/* 标准人材机相关 ↑ */
|
|
|
|
|
|
/* 补充人材机相关 ↓ */
|
|
|
+
|
|
|
+// 补充人材机分类树
|
|
|
+export interface ICptGljTree extends ITreeScm {
|
|
|
+ name: string;
|
|
|
+ from: FromType;
|
|
|
+}
|
|
|
+
|
|
|
+// 补充人材机分类树容器
|
|
|
+export interface ICptGljTreeData {
|
|
|
+ compilationID: string;
|
|
|
+ ownerID: string; // 企业或用户
|
|
|
+ treeData: ICptGljTree[];
|
|
|
+}
|
|
|
+
|
|
|
+// 补充人材机组成物
|
|
|
export interface ICptComponent {
|
|
|
ID: string; // 补充的ID改成了UUID ,标准的不变,但是这里
|
|
|
consumeAmt: number;
|
|
|
@@ -265,6 +280,7 @@ export interface ICptComponent {
|
|
|
from: FromType;
|
|
|
}
|
|
|
|
|
|
+// 补充人材机
|
|
|
export interface ICptGlj extends IBaseRationGlj {
|
|
|
ID: string;
|
|
|
ownerID: string;
|