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