Browse Source

feat(types): 在platformSwitch添加上传类型字段

laiguoran 3 years atrás
parent
commit
c15225e889
1 changed files with 3 additions and 0 deletions
  1. 3 0
      types/src/interface/platformSwitch.ts

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

@@ -2,4 +2,7 @@ export interface IPlatformSwitch {// 项目功能开关
     ID: string;
     type: string;// 开关类型
     enable: boolean;// 开关结果
+    fileFormat: string;// 文件格式
+    uploadNumber: number;// 上传数量
+    uploadSize: number;// 上传大小
 }