Przeglądaj źródła

feat(types): gljLibID to repositoryID

zhangweicheng 5 lat temu
rodzic
commit
c78860b314
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      types/src/interface/glj.ts

+ 3 - 3
types/src/interface/glj.ts

@@ -203,7 +203,7 @@ export interface IRawStdGlj extends IBaseRationGlj {
 // 标准人材机
 export interface IStdGlj extends IBaseRationGlj {
   ID: number;
-  gljLibID: number;
+  repositoryID: number;
   type: number;
   components: IStdComponent[];
   from: fromType;
@@ -220,7 +220,7 @@ export interface IRawStdGljTree {
 
 // 标准人材机分类树
 export interface IStdGljTree extends ITreeScm {
-  gljLibID: number;
+  repositoryID: number;
   name: string;
 }
 /* 标准人材机相关 ↑ */
@@ -247,7 +247,7 @@ export interface ICptGlj extends IBaseRationGlj {
 // 库下拉项
 export interface ISelectGljLibItem {
   name: string;
-  gljLibID: number | string;
+  repositoryID: number | string;
   key: string; // 与gljLibID拼接的形成的唯一值
   isPrior: boolean; // 优先的
   from: fromType;