648540858
2023-06-20 21a96ad20fd75e55d03c00af8df8adb039f0c77a
src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java
@@ -62,11 +62,17 @@
    private String thirdPartyGBIdReg = "[\\s\\S]*";
    private String civilCodeFile = "classpath:civilCode.csv";
    private List<String> interfaceAuthenticationExcludes = new ArrayList<>();
    private List<String> allowedOrigins = new ArrayList<>();
    private int maxNotifyCountQueue = 10000;
    private int registerAgainAfterTime = 60;
    private boolean registerKeepIntDialog = false;
    public Boolean getSavePositionHistory() {
        return savePositionHistory;
@@ -295,4 +301,28 @@
    public void setSqlLog(Boolean sqlLog) {
        this.sqlLog = sqlLog;
    }
    public String getCivilCodeFile() {
        return civilCodeFile;
    }
    public void setCivilCodeFile(String civilCodeFile) {
        this.civilCodeFile = civilCodeFile;
    }
    public int getRegisterAgainAfterTime() {
        return registerAgainAfterTime;
    }
    public void setRegisterAgainAfterTime(int registerAgainAfterTime) {
        this.registerAgainAfterTime = registerAgainAfterTime;
    }
    public boolean isRegisterKeepIntDialog() {
        return registerKeepIntDialog;
    }
    public void setRegisterKeepIntDialog(boolean registerKeepIntDialog) {
        this.registerKeepIntDialog = registerKeepIntDialog;
    }
}