(1)修复DDOS LOG排序bug

(2)修复Radius 日志查询searchNasIp,searchFramedIp,searchAccount只能选择一个的bug
(3)导入加入条数限制
This commit is contained in:
wangxin
2018-12-19 15:24:16 +06:00
parent 3248cde3ba
commit ad8cb6cd94
9 changed files with 25 additions and 11 deletions

View File

@@ -8,6 +8,10 @@ import java.util.regex.Pattern;
import com.google.gson.GsonBuilder;
public final class Constants {
/**
* 导入条数限制
*/
public static final int IMPORT_LIMIT=Configurations.getIntProperty("import_limit",10000);
public static final String GROUP_REUSE_SOURCES=Configurations.getStringProperty("groupReuseSources","groupReuseSources");
public static Integer APP_SPEC_SERVICE_CODE_MIN_VAL=Configurations.getIntProperty("app_spec_service_code_min_val", 300001);
public static Integer APP_SPEC_SERVICE_CODE_MAX_VAL=Configurations.getIntProperty("app_spec_service_code_max_val", 268435455);