package com.fjhx.constants; /** * 文件常量 */ public interface FileConstant { // 文件类型 interface FileType { // 图片 Integer IMAGE = 1; // 视频 Integer VIDEO = 2; // 音频 Integer AUDIO = 3; // word Integer WORD = 4; // excel Integer EXCEL = 5; // ppt Integer PPT = 6; // 文本 Integer TXT = 7; // zip Integer ZIP = 8; } // 文件后缀 interface FileSuffix { } }