From b45beab4bd9fd91bf583b57d48edf2e99584ec62 Mon Sep 17 00:00:00 2001 From: 81041 <81041@192.168.10.33> Date: 星期四, 11 十月 2018 14:14:57 +0800 Subject: [PATCH] 配组记录添加 --- gx_tieta/src/com/fgkj/dto/Batttestdatastop.java | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java b/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java index 7d98060..49f26c0 100644 --- a/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java +++ b/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java @@ -26,6 +26,7 @@ private Float mon_max; private float percent; private String note; + private String stationid; public Batttestdatastop() { } @@ -206,6 +207,14 @@ public void setNote(String note) { this.note = note; } + + public String getStationid() { + return stationid; + } + + public void setStationid(String stationid) { + this.stationid = stationid; + } @Override public String toString() { @@ -220,12 +229,14 @@ + ", mon_vol=" + mon_vol + ", lowC=" + lowC + ", lowV=" + lowV + ", mon_avg=" + mon_avg + ", mon_min=" + mon_min + ", mon_max=" + mon_max + ", percent=" + percent + ", note=" - + note + "]"; + + note + ", stationid=" + stationid + "]"; } + + -- Gitblit v1.9.1