Просмотр исходного кода

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

LuoHaoxuan 3 лет назад
Родитель
Сommit
9c00c1fd3c
2 измененных файлов с 6 добавлено и 0 удалено
  1. 1 0
      types/src/interface/index.ts
  2. 5 0
      types/src/interface/platformSwitch.ts

+ 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;// 开关结果
+}