!33 新增云快充启动充电的逻辑卡号和物理卡号,和双枪并充序号以及双枪并充的测试接口

* 新增云快充启动充电的逻辑卡号和物理卡号,和双枪并充序号以及双枪并充的测试接口
* CMD路由优化
* Merge remote-tracking branch 'gitee/master' into Feat_Lvneng_module_optimize
* cmd路由优化
* cmd路由优化
* 绿能模块优化
* 新增云快充1.7 0x3D
* 添加停止充电的TestController
This commit is contained in:
三丙
2025-08-25 14:04:25 +00:00
parent 7c26534dff
commit 921045af8f
63 changed files with 795 additions and 380 deletions

View File

@@ -0,0 +1,35 @@
/**
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
* 微信mohan_88888
* 抖音:程序员三丙
* 付费课程知识星球https://t.zsxq.com/aKtXo
*/
package sanbing.jcpp.protocol.lvneng;
/**
* 绿能协议常量定义
*
* @author sanbing
* @since 2024-12-16
*/
public final class LvnengProtocolConstants {
private LvnengProtocolConstants() {
// 工具类,禁止实例化
}
/**
* 协议名称常量
*/
public static final class ProtocolNames {
/** 绿能协议 v3.4.0 */
public static final String LVNENG_V340 = "lvnengV340";
// 注解专用简短别名
public static final String V340 = LVNENG_V340;
private ProtocolNames() {
// 工具类,禁止实例化
}
}
}