feat: 新增多个服务类及工具类,重构部分代码结构
重构服务类结构,将分散的服务统一整合到service包下 新增ProjectConstant常量类及多个实体服务类 添加SecurityUtils安全工具类和BeanCacher工具类 优化部分UI控件和转换器的实现
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.ecep.contract.constant;
|
||||
|
||||
public class CloudYuConstant {
|
||||
|
||||
public static final String KEY_PREFIX = "cloud.u8.contract.";
|
||||
/**
|
||||
* 合同同步后的最后一个日期
|
||||
*/
|
||||
public static final String KEY_SYNC_BY_LATEST_DATE = KEY_PREFIX + "latestDate";
|
||||
/**
|
||||
* 合同同步后的最后一个合同ID
|
||||
*/
|
||||
public static final String KEY_SYNC_BY_LATEST_ID = KEY_PREFIX + "latestId";
|
||||
/**
|
||||
* 合同同步时是否使用最后更新的Id来判断更新范围,否则使用最后更新的合同日期来判断更新范围
|
||||
*/
|
||||
public static final String KEY_SYNC_USE_LATEST_ID = KEY_PREFIX + "sync.use-latest-id";
|
||||
/**
|
||||
* 合同同步时的时间间隔,单位:秒
|
||||
*/
|
||||
public static final String KEY_SYNC_ELAPSE = KEY_PREFIX + "sync.elapse";
|
||||
/**
|
||||
* 自动创建公司的时间
|
||||
*/
|
||||
public static final String KEY_AUTO_CREATE_COMPANY_AFTER = KEY_PREFIX + "auto-create-company-after";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user