1 Star 0 Fork 1

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wmp_charge_data.java 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
智电云 提交于 2024-07-31 18:42 . Add files via upload
package com.zhengbangnet.commu.wm.message;
import com.zhengbangnet.commu.wm.pack.ProtocolObjList;
import com.zhengbangnet.commu.wm.pack.UnsignedChar;
import com.zhengbangnet.commu.wm.pack.UnsignedInt;
import com.zhengbangnet.commu.wm.pack.UnsignedShort;
/*
* 通信协议消息定义,修改自研究院plat_wm_def.h
* Eichong ZDY, 2020-4-23
* */
/************************** 充电电量数据结构定义 *****************************/
public class wmp_charge_data {
public UnsignedChar port_id = new UnsignedChar(); // 充电端口, 从1开始
public UnsignedChar charge_soc = new UnsignedChar(); // 充电进度:精度1%
public byte[] res = new byte[2];// 保留
public UnsignedInt charge_time = new UnsignedInt(); // 持续充电时间:1秒
public UnsignedInt total_quantity = new UnsignedInt(); // 充电总电量,精度0.001kW·h
public UnsignedInt total_cost = new UnsignedInt(); // 充电总费用,精度0.0001元
public UnsignedShort need_time = new UnsignedShort(); // 剩余充电时间:1分钟
public byte res2; // 保留
// 时段电量
public ProtocolObjList<wmp_slot_data> slot_data = new ProtocolObjList<>(8);
}
马建仓 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

搜索帮助