@@ -25,3 +25,4 @@ export * from './quantityNum';
export * from './financialProject';
export * from './institution';
export * from './process';
+export * from './structure';
@@ -0,0 +1,9 @@
+export interface IStructure {
+ ID: string;
+ structureType: string;
+ dataID: string;
+ parentID: string;
+ sort: number;
+ name: string;
+ accountTotal: number;
+}