From de8f3559c7e3bfe2153efded3b2885435aa93f0e Mon Sep 17 00:00:00 2001 From: 81041 <81041@DESKTOP-025NVD9> Date: 星期五, 18 一月 2019 16:16:21 +0800 Subject: [PATCH] 修改设备连接和电池组连接 --- gx_tieta/src/com/fgkj/dto/App_bts_comm_task.java | 29 ++++++++++++++++------------- 1 files changed, 16 insertions(+), 13 deletions(-) diff --git a/gx_tieta/src/com/fgkj/dto/App_bts_comm_task.java b/gx_tieta/src/com/fgkj/dto/App_bts_comm_task.java index 70d3385..0ddee33 100644 --- a/gx_tieta/src/com/fgkj/dto/App_bts_comm_task.java +++ b/gx_tieta/src/com/fgkj/dto/App_bts_comm_task.java @@ -7,6 +7,7 @@ private int num; private int thread_id; private int dev_id; + private String dev_mcu_uid; private int battgroup_cnt; private int battgroup_id1; private int battgroup_index1; @@ -158,24 +159,26 @@ public void setStationId(String stationId) { this.stationId = stationId; } + public String getDev_mcu_uid() { + return dev_mcu_uid; + } + public void setDev_mcu_uid(String dev_mcu_uid) { + this.dev_mcu_uid = dev_mcu_uid; + } @Override public String toString() { - return "App_bts_comm_task [num=" + num + ", thread_id=" + thread_id - + ", dev_id=" + dev_id + ", battgroup_cnt=" + battgroup_cnt - + ", battgroup_id1=" + battgroup_id1 + ", battgroup_index1=" - + battgroup_index1 + ", battgroup_id2=" + battgroup_id2 - + ", battgroup_index2=" + battgroup_index2 + ", battgroup_id3=" - + battgroup_id3 + ", battgroup_index3=" + battgroup_index3 - + ", battgroup_id4=" + battgroup_id4 + ", battgroup_index4=" - + battgroup_index4 + ", connect_time=" + connet_time - + ", dev_comm_runtime=" + dev_comm_runtime + ", break_type=" - + break_type + ", stationName=" + stationName - + ", stationName1=" + stationName1 + ", stationName2=" - + stationName2 + ", stationName3=" + stationName3 - + ", stationName5=" + stationName5 + ", stationId=" + stationId + return "App_bts_comm_task [num=" + num + ", thread_id=" + thread_id + ", dev_id=" + dev_id + ", dev_mcu_uid=" + + dev_mcu_uid + ", battgroup_cnt=" + battgroup_cnt + ", battgroup_id1=" + battgroup_id1 + + ", battgroup_index1=" + battgroup_index1 + ", battgroup_id2=" + battgroup_id2 + ", battgroup_index2=" + + battgroup_index2 + ", battgroup_id3=" + battgroup_id3 + ", battgroup_index3=" + battgroup_index3 + + ", battgroup_id4=" + battgroup_id4 + ", battgroup_index4=" + battgroup_index4 + ", connet_time=" + + connet_time + ", dev_comm_runtime=" + dev_comm_runtime + ", break_type=" + break_type + + ", stationName=" + stationName + ", stationName1=" + stationName1 + ", stationName2=" + stationName2 + + ", stationName3=" + stationName3 + ", stationName5=" + stationName5 + ", stationId=" + stationId + ", note=" + note + "]"; } + } -- Gitblit v1.9.1