From 9e1664cbb6c02f8a9bfd5ed6fd7087014d73b2d3 Mon Sep 17 00:00:00 2001 From: 星伟 <星伟@192.168.10.34> Date: 星期三, 10 十月 2018 10:51:46 +0800 Subject: [PATCH] 配组 --- gx_tieta/src/com/fgkj/dto/Batttestdatastop.java | 25 +++++++++++++++++++++++-- 1 files changed, 23 insertions(+), 2 deletions(-) diff --git a/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java b/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java index 3a971dc..7d98060 100644 --- a/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java +++ b/gx_tieta/src/com/fgkj/dto/Batttestdatastop.java @@ -24,7 +24,8 @@ private Float mon_avg; private Float mon_min; private Float mon_max; - + private float percent; + private String note; public Batttestdatastop() { } @@ -189,6 +190,22 @@ public void setMon_max(Float mon_max) { this.mon_max = mon_max; } + + public float getPercent() { + return percent; + } + + public void setPercent(float percent) { + this.percent = percent; + } + + public String getNote() { + return note; + } + + public void setNote(String note) { + this.note = note; + } @Override public String toString() { @@ -202,7 +219,8 @@ + ", test_cap=" + test_cap + ", mon_num=" + mon_num + ", mon_vol=" + mon_vol + ", lowC=" + lowC + ", lowV=" + lowV + ", mon_avg=" + mon_avg + ", mon_min=" + mon_min - + ", mon_max=" + mon_max + "]"; + + ", mon_max=" + mon_max + ", percent=" + percent + ", note=" + + note + "]"; } @@ -211,4 +229,7 @@ + + + } -- Gitblit v1.9.1