mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-08 20:10:01 +08:00
!33 新增云快充启动充电的逻辑卡号和物理卡号,和双枪并充序号以及双枪并充的测试接口
* 新增云快充启动充电的逻辑卡号和物理卡号,和双枪并充序号以及双枪并充的测试接口 * CMD路由优化 * Merge remote-tracking branch 'gitee/master' into Feat_Lvneng_module_optimize * cmd路由优化 * cmd路由优化 * 绿能模块优化 * 新增云快充1.7 0x3D * 添加停止充电的TestController
This commit is contained in:
@@ -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() {
|
||||
// 工具类,禁止实例化
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user