FileConstant.java 539 B

123456789101112131415161718192021222324252627282930313233
  1. package com.fjhx.constants;
  2. /**
  3. * 文件常量
  4. */
  5. public interface FileConstant {
  6. // 文件类型
  7. interface FileType {
  8. // 图片
  9. Integer IMAGE = 1;
  10. // 视频
  11. Integer VIDEO = 2;
  12. // 音频
  13. Integer AUDIO = 3;
  14. // word
  15. Integer WORD = 4;
  16. // excel
  17. Integer EXCEL = 5;
  18. // ppt
  19. Integer PPT = 6;
  20. // 文本
  21. Integer TXT = 7;
  22. // zip
  23. Integer ZIP = 8;
  24. }
  25. // 文件后缀
  26. interface FileSuffix {
  27. }
  28. }