Ver código fonte

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

LuoHaoxuan 3 anos atrás
pai
commit
9c00c1fd3c

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

@@ -37,3 +37,4 @@ export * from './budgetData';
 export * from './approvalStatus';
 export * from './business';
 export * from './gatherYsProfileFile';
+export * from './platformSwitch';

+ 5 - 0
types/src/interface/platformSwitch.ts

@@ -0,0 +1,5 @@
+export interface IPlatformSwitch {// 项目功能开关
+    ID: string;
+    type: string;// 开关类型
+    enable: boolean;// 开关结果
+}