package com.dev.fbs9009;
|
|
public class LD_mon_states {
|
|
|
private int mon_states; //µ¥Ìå״̬
|
private double mon_vol; //µ¥Ìåµçѹ
|
private double mon_curr; //µ¥ÌåµçÁ÷
|
private double mon_cap; //µ¥ÌåÈÝÁ¿
|
private int stop_reason; //Í£Ö¹ÔÒò
|
|
private double test_hour; //²âÊÔʱ³¤-H(Сʱ)
|
private double test_minute; //²âÊÔʱ³¤-M(·ÖÖÓ)
|
private double test_second; //²âÊÔʱ³¤-S(Ãë)
|
|
/**
|
* ³õʼ»¯µ¥ÌåÊý¾Ý
|
*/
|
public LD_mon_states(){
|
this.mon_states = 0;
|
this.mon_vol = 0.0;
|
this.mon_curr = 0.0;
|
this.mon_cap = 0.0;
|
this.stop_reason = 0;
|
|
this.test_hour = 0;
|
this.test_minute = 0;
|
this.test_second = 0;
|
}
|
|
public int getMon_states() {
|
return mon_states;
|
}
|
public void setMon_states(int mon_states) {
|
this.mon_states = mon_states;
|
}
|
public double getMon_vol() {
|
return mon_vol;
|
}
|
public void setMon_vol(double mon_vol) {
|
this.mon_vol = mon_vol;
|
}
|
public double getMon_curr() {
|
return mon_curr;
|
}
|
public void setMon_curr(double mon_curr) {
|
this.mon_curr = mon_curr;
|
}
|
public double getMon_cap() {
|
return mon_cap;
|
}
|
public void setMon_cap(double mon_cap) {
|
this.mon_cap = mon_cap;
|
}
|
public int getStop_reason() {
|
return stop_reason;
|
}
|
public void setStop_reason(int stop_reason) {
|
this.stop_reason = stop_reason;
|
}
|
public double getTest_hour() {
|
return test_hour;
|
}
|
public void setTest_hour(double test_hour) {
|
this.test_hour = test_hour;
|
}
|
public double getTest_minute() {
|
return test_minute;
|
}
|
public void setTest_minute(double test_minute) {
|
this.test_minute = test_minute;
|
}
|
public double getTest_second() {
|
return test_second;
|
}
|
public void setTest_second(double test_second) {
|
this.test_second = test_second;
|
}
|
|
@Override
|
public String toString() {
|
return "LD_mon_states [mon_states=" + mon_states + ", mon_vol=" + mon_vol + ", mon_curr=" + mon_curr
|
+ ", mon_cap=" + mon_cap + ", stop_reason=" + stop_reason + ", test_hour=" + test_hour
|
+ ", test_minute=" + test_minute + ", test_second=" + test_second + "]";
|
}
|
|
|
}
|