This commit is contained in:
2023-05-25 15:10:08 +08:00
parent 5ee9d8c051
commit b61183b0a9
9 changed files with 155 additions and 16 deletions

View File

@ -48,4 +48,14 @@ public class BaseConstant {
* 资源映射路径 前缀
*/
public static final String RESOURCE_PREFIX = "/resource";
/**
* 是
*/
public static final String YES = "Y";
/**
* 处理失败 个数 0
*/
public static final Integer HANDLE_ERROR = 0;
}

View File

@ -0,0 +1,17 @@
package com.qiaoba.common.base.constants;
/**
* 配置常量
*
* @author ailanyin
* @version 1.0
* @since 2023-04-23 15:37:43
*/
public class ConfigConstant {
/**
* 参数管理 cache key 前缀
*/
public static final String SYS_CONFIG_KEY_PREFIX = "sys_config:";
}