package com.table.badbatt; import java.io.Serializable; public class Batt_param_low implements Serializable { private Integer num; private Integer low_type; //1:µçѹ 2:µçÈÝ 3:µçµ¼ private Integer low_nametype;//0:µÍ 1:´ÎµÍ 2:¸æ¾¯ 3:¸ü»» private Float low_value; private Integer low_method; // 0:±ê³Æ 1:ƽ¾ùÖµ public Batt_param_low() { super(); // TODO Auto-generated constructor stub } public Integer getNum() { return num; } public void setNum(Integer num) { this.num = num; } public Integer getLow_type() { return low_type; } public void setLow_type(Integer low_type) { this.low_type = low_type; } public Integer getLow_nametype() { return low_nametype; } public void setLow_nametype(Integer low_nametype) { this.low_nametype = low_nametype; } public Float getLow_value() { return low_value; } public void setLow_value(Float low_value) { this.low_value = low_value; } public Integer getLow_method() { return low_method; } public void setLow_method(Integer low_method) { this.low_method = low_method; } @Override public String toString() { return "Batt_param_low [num=" + num + ", low_type=" + low_type + ", low_nametype=" + low_nametype + ", low_value=" + low_value + ", low_method=" + low_method + "]"; } }