Explorar o código

feat(client): structure

qinlaiqiao %!s(int64=4) %!d(string=hai) anos
pai
achega
1f7aa0f71e
Modificáronse 2 ficheiros con 10 adicións e 0 borrados
  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;
+}