소스 검색

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

laiguoran 3 년 전
부모
커밋
c15225e889
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      types/src/interface/platformSwitch.ts

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

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