refactor(license): 优化 license 模块

This commit is contained in:
jasmine
2025-04-17 06:29:34 +00:00
committed by Charles7c
parent da4c8154bf
commit 1ce5c023cf
22 changed files with 345 additions and 306 deletions

View File

@@ -139,6 +139,21 @@ public class PropertiesConstants {
*/
public static final String TRACE = CONTINEW_STARTER + StringConstants.DOT + "trace";
/**
* license配置
*/
public static final String LICENSE = CONTINEW_STARTER + StringConstants.DOT + "license";
/**
* license 生成模块配置
*/
public static final String LICENSE_GENERATE = LICENSE + StringConstants.DOT + "generate";
/**
* license 校验模块配置
*/
public static final String LICENSE_VERIFY = LICENSE + StringConstants.DOT + "verify";
private PropertiesConstants() {
}
}