1 Star 0 Fork 1

TONY/企业EMS - 能源管理系统 - 能源管理系统源码-双碳平台源码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wmp_charge_policy_resp.java 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
智电云 提交于 2024-09-02 15:28 +08:00 . Add files via upload
package com.zhengbangnet.commu.wm.message;
import com.zhengbangnet.commu.wm.pack.UnsignedChar;
import com.zhengbangnet.commu.wm.pack.UnsignedShort;
/*
* 通信协议消息定义,修改自研究院plat_wm_def.h
* Eichong ZDY, 2020-4-23
* */
/************************** 充电策略数据结构定义 *****************************/
public class wmp_charge_policy_resp {
/* 策略配置结果 */
public final static int WMP_POLICY_SUCESS = 0; // 策略成功
public final static int WMP_POLICY_ACCOUNT = 1; // 帐号非法
public final static int WMP_POLICY_LOCK = 2; // 帐号锁定
public final static int WMP_POLICY_BALENCE = 3; // 余额不足
public final static int WMP_POLICY_PARAM = 4; // 参数非法
public final static int WMP_POLICY_ELSE = 255; // 其他错误
public UnsignedChar port_id = new UnsignedChar(); // 充电端口, 从1开始
public byte res; // 保留
public UnsignedShort result = new UnsignedShort(); // 结果
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhou_yu_feng/Source-code-of-energy-management-system05.git
git@gitee.com:zhou_yu_feng/Source-code-of-energy-management-system05.git
zhou_yu_feng
Source-code-of-energy-management-system05
企业EMS - 能源管理系统 - 能源管理系统源码-双碳平台源码
main

搜索帮助