iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/video/dahua/DHSavePath.java
@@ -17,10 +17,6 @@
    private static DHSavePath instance = new DHSavePath();
    public final static String capturePath = "D:/irs/Capture/";
    public final static String modelPath = "D:/irs/Model/";
    public static DHSavePath getSavePath() {
        return instance;
    }
@@ -31,12 +27,12 @@
     * @return
     */
    public String getSaveCapturePath(String channel, Date curDate) {
        File path1 = new File(capturePath);
        File path1 = new File(DHConfiguration.staticCapturePath);
        if (!path1.exists()) {
            path1.mkdir();
        }
        File path2 = new File(capturePath + ToolKits.getDay() + "/" + channel + "/");
        File path2 = new File(DHConfiguration.staticCapturePath + ToolKits.getDay() + "/" + channel + "/");
        if (!path2.exists()) {
            path2.mkdirs();
        }
@@ -59,7 +55,7 @@
//            path1.mkdir();
//        }
        File path2 = new File(modelPath + ToolKits.getDay() + "/" + cameraCode + "/");
        File path2 = new File(DHConfiguration.staticModelPath + ToolKits.getDay() + "/" + cameraCode + "/");
//        if (!path2.exists()) {
//            path2.mkdirs();
//        }