管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-20 035d2ab3dae3b0ce20555a423b3bcabb4371543c
src/main/java/com/lf/server/entity/all/StaticData.java
@@ -12,7 +12,7 @@
    /**
     * 权限排除路径:/proxy,要求全部小写
     */
    public static String[] EXCLUDE_PATH = new String[]{"/swagger", "/sign/", "/fmeit/", "/perms/", "/floatserver/", "/error"};
    public static String[] EXCLUDE_PATH = new String[]{"/swagger", "/sign/", "/fmeit/", "/perms/", "/floatserver/", "/error", "/wmts/select"};
    /**
     * 数值:4
@@ -35,6 +35,11 @@
    public final static int SIXTEEN = 16;
    /**
     * 数值:100
     */
    public final static int ONE_HUNDRED = 100;
    /**
     * 数值:200
     */
    public final static int TWO_HUNDRED = 200;
@@ -48,6 +53,11 @@
     * 数值:1050.0
     */
    public static final double D1050 = 1050.0;
    /**
     * 字符1
     */
    public final static String S1 = "1";
    /**
     * 等号
@@ -80,9 +90,9 @@
    public final static String XLS = ".xls";
    /**
     * SHP文件
     * xlsx文件
     */
    public final static String SHP = ".shp";
    public final static String XLSX = ".xlsx";
    /**
     * MDB文件
@@ -90,19 +100,29 @@
    public final static String MDB = ".mdb";
    /**
     * SHP文件
     */
    public final static String SHP = ".shp";
    /**
     * GDB文件
     */
    public final static String GDB = ".gdb";
    /**
     * xlsx文件
     */
    public final static String XLSX = ".xlsx";
    /**
     * IMG文件
     */
    public final static String IMG = ".img";
    /**
     * MPT文件
     */
    public final static String MPT = ".mpt";
    /**
     * 3DML文件
     */
    public final static String D3DML = ".3dml";
    /**
     * TIF文件
@@ -113,6 +133,16 @@
     * TIFF文件
     */
    public final static String TIFF = ".tiff";
    /**
     * WMTS
     */
    public final static String WMTS = "WMTS";
    /**
     * GetCapabilities
     */
    public final static String CAPABILITY = "GetCapabilities";
    /**
     * 版本号
@@ -150,7 +180,7 @@
    public final static String DRUID_COOKIE_KEY = "JSESSIONID";
    /**
     * 上传文件类型
     * 上传文件类型 *
     */
    public final static String FILE_TYPES = "'xls','shp','gdb','mdb'";
@@ -167,17 +197,17 @@
    /**
     * MPT文件扩展名
     */
    public final static List<String> MPT_EXTENSIONS = new ArrayList<>(Arrays.asList(".mpt", ".midx", ".strmi"));
    public final static List<String> MPT_EXT = new ArrayList<>(Arrays.asList(".midx", ".strmi"));
    /**
     * IMG文件扩展名
     */
    public final static List<String> IMG_EXT = new ArrayList<>(Arrays.asList( ".rrd", ".img.aux.xml", ".hdr", ".img.enp", ".img.xml"));
    public final static List<String> IMG_EXT = new ArrayList<>(Arrays.asList(".rrd", ".img.aux.xml", ".hdr", ".img.enp", ".img.xml"));
    /**
     * TIF文件扩展名
     */
    public final static List<String> TIF_EXTENSIONS = new ArrayList<>(Arrays.asList(".prj", ".tfw", ".tif.ovr", ".tif.aux.xml", ".tif.enp", ".tif.xml"));
    public final static List<String> TIF_EXT = new ArrayList<>(Arrays.asList(".prj", ".tfw", ".tif.ovr", ".tif.aux.xml", ".tif.enp", ".tif.xml"));
    /**
     * TIFF文件扩展名
@@ -215,6 +245,11 @@
    public final static List<String> MDB_EXCLUDE_FIELDS = new ArrayList<>(Arrays.asList("Shape", "SHAPE_LENG", "Shape_Length", "Shape_Area", "OBJECTID_1"));
    /**
     * 标绘Shp排除字段
     */
    public final static List<String> MARK_EXCLUDE_FIELDS = new ArrayList<>(Arrays.asList("wkt", "geom", "objectid", "shape_leng", "shape_area", "serialVersionUID", "dirName", "depName", "verName", "createName", "updateName"));
    /**
     * GDB排除字段
     */
    public final static List<String> GDB_EXCLUDE_FIELDS = new ArrayList<>(Arrays.asList("geom", "objectid", "shape_leng", "shape_area", "serialVersionUID", "dirName", "depName", "verName", "createName", "updateName"));