新增CAD类型 .dwf文件支持

This commit is contained in:
gaoxiongzaq
2023-04-24 14:42:33 +08:00
parent ae55f53325
commit 8649f20841
5 changed files with 5 additions and 4 deletions

View File

@ -46,7 +46,7 @@ public enum FileType {
private static final String[] TIFF_TYPES = {"tif", "tiff"};
private static final String[] OFD_TYPES = {"ofd"};
private static final String[] SVG_TYPES = {"svg"};
private static final String[] CAD_TYPES = {"dwg", "dxf"};
private static final String[] CAD_TYPES = {"dwg", "dxf", "dwf"};
private static final String[] SSIM_TEXT_TYPES = ConfigConstants.getSimText();
private static final String[] CODES = {"java", "c", "php", "go", "python", "py", "js", "html", "ftl", "css", "lua", "sh", "rb", "yaml", "yml", "json", "h", "cpp", "cs", "aspx", "jsp"};
private static final String[] MEDIA_TYPES = ConfigConstants.getMedia();