From 2da88e0ad99dce340f0d25bff5b50fa629bcce15 Mon Sep 17 00:00:00 2001 From: whycrzh <ruanzhigang@whycst.com> Date: 星期二, 26 一月 2021 11:29:31 +0800 Subject: [PATCH] update DLG_Progress、Ld9testdata、Ld9testdata_inf、Ld9testdatastop and relatedReference --- src/main/java/com/fgkj/dto/Ld9testdata_inf.java | 49 +++++++++++++++++++++++++++++-------------------- 1 files changed, 29 insertions(+), 20 deletions(-) diff --git a/src/main/java/com/fgkj/dto/Ld9testdata_inf.java b/src/main/java/com/fgkj/dto/Ld9testdata_inf.java index 6b29869..77b91c0 100644 --- a/src/main/java/com/fgkj/dto/Ld9testdata_inf.java +++ b/src/main/java/com/fgkj/dto/Ld9testdata_inf.java @@ -8,7 +8,7 @@ @Alias("Ld9testdata_inf") public class Ld9testdata_inf implements Serializable{ private Integer num; - private Integer BattGroupId; + private Integer battGroupId; private Integer test_record_count; private Integer test_record_count_ex; private Integer test_type; @@ -36,12 +36,15 @@ public void setNum(Integer num) { this.num = num; } + public Integer getBattGroupId() { - return BattGroupId; + return battGroupId; } + public void setBattGroupId(Integer battGroupId) { - BattGroupId = battGroupId; + this.battGroupId = battGroupId; } + public Integer getTest_record_count() { return test_record_count; } @@ -150,24 +153,30 @@ public void setMin_monvol(float min_monvol) { this.min_monvol = min_monvol; } + @Override public String toString() { - return "Ld9testdata_inf [num=" + num + ", BattGroupId=" + BattGroupId - + ", test_record_count=" + test_record_count - + ", test_record_count_ex=" + test_record_count_ex - + ", test_type=" + test_type + ", record_time_interval=" - + record_time_interval + ", record_num=" + record_num - + ", test_starttime=" + test_starttime + ", test_starttime_ex=" - + test_starttime_ex + ", record_time=" + record_time - + ", test_timelong=" + test_timelong + ", test_stoptype=" - + test_stoptype + ", test_stopreason=" + test_stopreason - + ", group_vol=" + group_vol + ", test_curr=" + test_curr - + ", test_cap=" + test_cap + ", mon_num=" + mon_num - + ", mon_vol=" + mon_vol + ", max_monvol=" + max_monvol - + ", min_monvol=" + min_monvol + "]"; + return "Ld9testdata_inf{" + + "num=" + num + + ", battGroupId=" + battGroupId + + ", test_record_count=" + test_record_count + + ", test_record_count_ex=" + test_record_count_ex + + ", test_type=" + test_type + + ", record_time_interval=" + record_time_interval + + ", record_num=" + record_num + + ", test_starttime=" + test_starttime + + ", test_starttime_ex=" + test_starttime_ex + + ", record_time=" + record_time + + ", test_timelong=" + test_timelong + + ", test_stoptype=" + test_stoptype + + ", test_stopreason=" + test_stopreason + + ", group_vol=" + group_vol + + ", test_curr=" + test_curr + + ", test_cap=" + test_cap + + ", mon_num=" + mon_num + + ", mon_vol=" + mon_vol + + ", max_monvol=" + max_monvol + + ", min_monvol=" + min_monvol + + '}'; } - - - - } -- Gitblit v1.9.1