package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Battmon_testcap implements Serializable{
|
private int num;
|
private float monvolstd;
|
private float moncapstd;
|
private String battproducer;
|
private String battmodel;
|
private float test_cap;
|
private float mon_vol;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public float getMonvolstd() {
|
return monvolstd;
|
}
|
public void setMonvolstd(float monvolstd) {
|
this.monvolstd = monvolstd;
|
}
|
public float getMoncapstd() {
|
return moncapstd;
|
}
|
public void setMoncapstd(float moncapstd) {
|
this.moncapstd = moncapstd;
|
}
|
public String getBattproducer() {
|
return battproducer;
|
}
|
public void setBattproducer(String battproducer) {
|
this.battproducer = battproducer;
|
}
|
public String getBattmodel() {
|
return battmodel;
|
}
|
public void setBattmodel(String battmodel) {
|
this.battmodel = battmodel;
|
}
|
public float getTest_cap() {
|
return test_cap;
|
}
|
public void setTest_cap(float test_cap) {
|
this.test_cap = test_cap;
|
}
|
public float getMon_vol() {
|
return mon_vol;
|
}
|
public void setMon_vol(float mon_vol) {
|
this.mon_vol = mon_vol;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Battmon_testcap [num=" + num + ", monvolstd=" + monvolstd + ", moncapstd=" + moncapstd
|
+ ", battproducer=" + battproducer + ", battmodel=" + battmodel + ", test_cap=" + test_cap
|
+ ", mon_vol=" + mon_vol + ", note=" + note + "]";
|
}
|
|
|
}
|