2022-09-19 13:41:09 +08:00
|
|
|
package com.engine.salary.sys.constant;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 系统常量
|
|
|
|
|
* <p>Copyright: Copyright (c) 2022</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
|
|
|
|
public class SalarySysConstant {
|
|
|
|
|
/**
|
|
|
|
|
* 自定义配置
|
|
|
|
|
*/
|
|
|
|
|
public static final String CUSTOM_CODE = "custom";
|
|
|
|
|
/**
|
|
|
|
|
* 排序规则标识
|
|
|
|
|
*/
|
|
|
|
|
public static final String ORDER_RULE_CODE = "orderRule";
|
2022-09-19 16:44:32 +08:00
|
|
|
/**
|
|
|
|
|
* 顺序标识
|
|
|
|
|
*/
|
|
|
|
|
public static final String ASCORDESC_CODE = "ascOrDesc";
|
2022-09-22 10:10:18 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 定位人员规则标识
|
|
|
|
|
*/
|
|
|
|
|
public static final String MATCH_EMPLOYEE_MODE = "matchEmployeeMode";
|
2022-09-27 17:43:43 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 核算合计功能开启标识
|
|
|
|
|
*/
|
|
|
|
|
public static final String OPEN_ACCT_RESULT_SUM = "OPEN_ACCT_RESULT_SUM";
|
2022-10-10 09:43:57 +08:00
|
|
|
|
2022-11-07 11:31:21 +08:00
|
|
|
/**
|
|
|
|
|
* 是否显示脱敏表人员信息
|
|
|
|
|
*/
|
|
|
|
|
public static final String DISPLAY_EMP_INFO_REPORT = "DISPLAY_EMP_INFO_REPORT";
|
|
|
|
|
|
2022-10-10 09:43:57 +08:00
|
|
|
/**
|
|
|
|
|
* 应用设置是否开启加密
|
|
|
|
|
*/
|
|
|
|
|
public static final String OPEN_APPLICATION_ENCRYPT = "OPEN_APPLICATION_ENCRYPT";
|
|
|
|
|
/**
|
|
|
|
|
* 加密后前缀
|
|
|
|
|
*/
|
|
|
|
|
public static final String PRE_SIGN_ENCRYPT = "AES_";
|
|
|
|
|
/**
|
|
|
|
|
* 锁的key
|
|
|
|
|
*/
|
|
|
|
|
public static final String AES_ENCRYPT_IN_PROGRESS = "AES_ENCRYPT_IN_PROGRESS";
|
2022-10-12 14:24:01 +08:00
|
|
|
public static final String ENCRYPT_IN_PROGRESS = "ENCRYPT_PROGRESS_";
|
2022-11-08 11:22:56 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 需要申报功能
|
|
|
|
|
*/
|
|
|
|
|
public static final String TAX_DECLARATION_FUNCTION = "taxDeclarationFunction";
|
2023-06-02 15:25:46 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 是否需要导入、编辑项目自动锁定conf_key
|
|
|
|
|
*/
|
|
|
|
|
public static final String EDIT_IMPORT_AUTO_LOCK = "EditImportAutoLock";
|
|
|
|
|
|
2022-09-19 13:41:09 +08:00
|
|
|
}
|