@@ -0,0 +1,8 @@
+export interface IDistrict {
+ id: string;
+ isLeaf: boolean;
+ level: number;
+ name: string;
+ parentId: string;
+ usetype: number;
+}
@@ -38,3 +38,4 @@ export * from './approvalStatus';
export * from './business';
export * from './gatherYsProfileFile';
export * from './platformSwitch';
+export * from './area';