火力规则:返回平台以及组件

This commit is contained in:
MHW
2026-03-12 16:01:04 +08:00
parent 8b3fe9b548
commit 956d3f69ea
30 changed files with 817 additions and 4 deletions

View File

@@ -113,6 +113,12 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.25</version>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,16 @@
package com.solution.common.constant;
/**
* 火力规则常量
*/
public class ExceptionConstants {
public static final String PARAMETER_EXCEPTION = "参数异常";
public static final String RESULT_EXCEPTION = "结果异常";
public static final String NOT_FOUND_CARRIAGE_CHAIN_HANDLER = "not found carriage chain handler!";
public static final String NOT_FOUND_F22_COMPONENT = "未找到 F-22 组件";
}

View File

@@ -0,0 +1,7 @@
package com.solution.common.constant;
public class PlatformAndModuleConstants {
public static final String F22 = "f22";
}