Files
JChargePointProtocol/jcpp-protocol-lvneng/src/main/java/sanbing/jcpp/protocol/lvneng/LvnengProtocolConstants.java
三丙 58580ca11e !45 !44 comment
* !44 comment
* !39 添加下行日志打印
* !36 扩展计价领域模型
* !35 webui 初步成型
* !34 webui 初步成型
2025-09-09 08:23:59 +00:00

38 lines
888 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
* 微信mohan_88888
* 抖音:程序员三丙
* 付费课程知识星球https://t.zsxq.com/aKtXo
*/
package sanbing.jcpp.protocol.lvneng;
import sanbing.jcpp.protocol.enums.SupportedProtocols;
/**
* 绿能协议常量定义
*
* @author 九筒
* @since 2024-12-16
*/
public final class LvnengProtocolConstants {
private LvnengProtocolConstants() {
// 工具类,禁止实例化
}
/**
* 协议名称常量
*/
public static final class ProtocolNames {
/** 绿能协议 v3.4.0 */
public static final String LVNENG_V340 = SupportedProtocols.LVNENG_V340;
// 注解专用简短别名
public static final String V340 = LVNENG_V340;
private ProtocolNames() {
// 工具类,禁止实例化
}
}
}