@@ -37,3 +37,4 @@ export * from './budgetData';
export * from './approvalStatus';
export * from './business';
export * from './gatherYsProfileFile';
+export * from './platformSwitch';
@@ -0,0 +1,5 @@
+export interface IPlatformSwitch {// 项目功能开关
+ ID: string;
+ type: string;// 开关类型
+ enable: boolean;// 开关结果
+}