소스 검색

feat(client): structure

qinlaiqiao 4 년 전
부모
커밋
1f7aa0f71e
2개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      types/src/interface/index.ts
  2. 9 0
      types/src/interface/structure.ts

+ 1 - 0
types/src/interface/index.ts

@@ -25,3 +25,4 @@ export * from './quantityNum';
 export * from './financialProject';
 export * from './institution';
 export * from './process';
+export * from './structure';

+ 9 - 0
types/src/interface/structure.ts

@@ -0,0 +1,9 @@
+export interface IStructure {
+  ID: string;
+  structureType: string;
+  dataID: string;
+  parentID: string;
+  sort: number;
+  name: string;
+  accountTotal: number;
+}