whycrzh
2021-01-26 2da88e0ad99dce340f0d25bff5b50fa629bcce15
src/main/java/com/fgkj/dto/Ld9testdata.java
@@ -8,7 +8,7 @@
@Alias("Ld9testdata")
public class Ld9testdata implements Serializable{
   private Integer num;
   private Integer BattGroupId;
   private Integer battGroupId;
   private Integer test_record_count;
   private Integer test_type;
   private Integer record_num;
@@ -31,12 +31,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;
   }
@@ -121,18 +124,26 @@
   public void setTest_monnum(int test_monnum) {
      this.test_monnum = test_monnum;
   }
   @Override
   public String toString() {
      return "Ld9testdata [num=" + num + ", BattGroupId=" + BattGroupId
            + ", test_record_count=" + test_record_count + ", test_type="
            + test_type + ", record_num=" + record_num
            + ", test_starttime=" + test_starttime + ", record_time="
            + record_time + ", test_timelong=" + test_timelong
            + ", online_vol=" + online_vol + ", group_vol=" + group_vol
            + ", test_curr=" + test_curr + ", test_cap=" + test_cap
            + ", mon_num=" + mon_num + ", mon_vol=" + mon_vol
            + ", mon_tmp=" + mon_tmp + ", test_monnum=" + test_monnum + "]";
      return "Ld9testdata{" +
            "num=" + num +
            ", battGroupId=" + battGroupId +
            ", test_record_count=" + test_record_count +
            ", test_type=" + test_type +
            ", record_num=" + record_num +
            ", test_starttime=" + test_starttime +
            ", record_time=" + record_time +
            ", test_timelong=" + test_timelong +
            ", online_vol=" + online_vol +
            ", group_vol=" + group_vol +
            ", test_curr=" + test_curr +
            ", test_cap=" + test_cap +
            ", mon_num=" + mon_num +
            ", mon_vol=" + mon_vol +
            ", mon_tmp=" + mon_tmp +
            ", test_monnum=" + test_monnum +
            '}';
   }
}