package com.fgkj.dto.ram;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Bts_gprs_state implements Serializable{
|
private int num;
|
private int dev_id;
|
private int op_cmd;
|
private Date record_datetime;
|
private String scq_val;
|
private String note;
|
private String stationName;
|
private String FBSDeviceName;
|
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 getOp_cmd() {
|
return op_cmd;
|
}
|
public void setOp_cmd(int op_cmd) {
|
this.op_cmd = op_cmd;
|
}
|
public Date getRecord_datetime() {
|
return record_datetime;
|
}
|
public void setRecord_datetime(Date record_datetime) {
|
this.record_datetime = record_datetime;
|
}
|
public String getScq_val() {
|
return scq_val;
|
}
|
public void setScq_val(String scq_val) {
|
this.scq_val = scq_val;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
public String getStationName() {
|
return stationName;
|
}
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
public String getFBSDeviceName() {
|
return FBSDeviceName;
|
}
|
public void setFBSDeviceName(String fBSDeviceName) {
|
FBSDeviceName = fBSDeviceName;
|
}
|
@Override
|
public String toString() {
|
return "Bts_gprs_state [num=" + num + ", dev_id=" + dev_id
|
+ ", op_cmd=" + op_cmd + ", record_datetime=" + record_datetime
|
+ ", scq_val=" + scq_val + ", note=" + note + ", stationName="
|
+ stationName + ", FBSDeviceName=" + FBSDeviceName + "]";
|
}
|
|
|
|
}
|