Преглед изворни кода

feat(types): 补充人材机分类

vian пре 4 година
родитељ
комит
644e8364ce
1 измењених фајлова са 16 додато и 0 уклоњено
  1. 16 0
      types/src/interface/glj.ts

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

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