package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.fgkj.dao.BaseDAO;
|
import com.fgkj.dao.CallBack;
|
|
public class Eventdata implements Serializable{
|
private int num;
|
private int dev_id;
|
private int test_record_count;
|
private int test_type;
|
private int record_num;
|
private Date record_time;
|
private Date test_starttime;
|
private int am_num;
|
private float analog_value;
|
private float switch_value;
|
private float state_value;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public int getDev_id() {
|
return dev_id;
|
}
|
public void setDev_id(int dev_id) {
|
this.dev_id = dev_id;
|
}
|
public int getTest_record_count() {
|
return test_record_count;
|
}
|
public void setTest_record_count(int test_record_count) {
|
this.test_record_count = test_record_count;
|
}
|
public int getTest_type() {
|
return test_type;
|
}
|
public void setTest_type(int test_type) {
|
this.test_type = test_type;
|
}
|
public int getRecord_num() {
|
return record_num;
|
}
|
public void setRecord_num(int record_num) {
|
this.record_num = record_num;
|
}
|
public Date getRecord_time() {
|
return record_time;
|
}
|
public void setRecord_time(Date record_time) {
|
this.record_time = record_time;
|
}
|
public Date getTest_starttime() {
|
return test_starttime;
|
}
|
public void setTest_starttime(Date test_starttime) {
|
this.test_starttime = test_starttime;
|
}
|
public int getAm_num() {
|
return am_num;
|
}
|
public void setAm_num(int am_num) {
|
this.am_num = am_num;
|
}
|
public float getAnalog_value() {
|
return analog_value;
|
}
|
public void setAnalog_value(float analog_value) {
|
this.analog_value = analog_value;
|
}
|
public float getSwitch_value() {
|
return switch_value;
|
}
|
public void setSwitch_value(float switch_value) {
|
this.switch_value = switch_value;
|
}
|
public float getState_value() {
|
return state_value;
|
}
|
public void setState_value(float state_value) {
|
this.state_value = state_value;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Eventdata [num=" + num + ", dev_id=" + dev_id
|
+ ", test_record_count=" + test_record_count + ", test_type="
|
+ test_type + ", record_num=" + record_num + ", record_time="
|
+ record_time + ", test_starttime=" + test_starttime
|
+ ", am_num=" + am_num + ", analog_value=" + analog_value
|
+ ", switch_value=" + switch_value + ", state_value="
|
+ state_value + ", note=" + note + "]";
|
}
|
|
|
}
|