weaver-hrm-salary/src/com/engine/salary/sys/constant/SalarySysConstant.java

48 lines
1.1 KiB
Java
Raw Normal View History

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
/**
* 应用设置是否开启加密
*/
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-09-19 13:41:09 +08:00
}