From 8056a8a74991edbb696959af42cc2ad16739263c Mon Sep 17 00:00:00 2001 From: chenlw <874313221@qq.com> Date: Fri, 21 Oct 2016 09:01:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E5=90=8E=E7=9A=84constant?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/com/platform/utils/Constant.java | 42 ++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/src/com/platform/utils/Constant.java b/src/com/platform/utils/Constant.java index 59149697..f496395f 100644 --- a/src/com/platform/utils/Constant.java +++ b/src/com/platform/utils/Constant.java @@ -37,14 +37,38 @@ public class Constant { */ public final static int moveFileMaxNum = 1; - /** - * volume 获取的线程休眠时间 - */ - public final static int get_volume_sleep_time = 5000; - - /** - * volume 获取的线程休眠时间 - */ - public final static int update_dataInfo_sleep_time = 1500; + /** + * volume 获取的线程休眠时间 + */ + public final static int get_volume_sleep_time = 5000; + + /** + * volume 获取的线程休眠时间 + */ + public final static int update_dataInfo_sleep_time = 1500; + + /** 国际话配置文件文件-i18n.properties */ + public final static String I18N_PROPERTIES_FIEL_PATH = "/com/base/i18n.properties"; + + /** 信息系统excel导出模板 */ + public final static String SYSTEM_INFO_EXCEL_TEMPLATE_FIEL_PATH = "/com/base/system_templates.xlsx"; + + /** WritefileThread-线程睡眠时间--3000 */ + public final static long THREAD_SLEEP_WRITEFILETHREAD = 3000; + + /** CustomException记录报异常的对象的对象个数--10 */ + public final static int CustomException_log_object_size = 10; + + /** excel模板真实数据的起始行数 */ + public final static int EXCEL_TEMPLATE_INIT_ROW = 8; + + /** excel导入-修改preDataInfo信息 */ + public final static String preDataInfo_update = "修改"; + + /** excel导入-新增行政区划-preDataInfo信息 */ + public final static String preDataInfo_add_area = "新增行政区划"; + + /** excel导入-新增信息系统-preDataInfo信息 */ + public final static String preDataInfo_add_system = "新增信息系统"; }