package com.fgkj.dto.ram;
|
|
import java.io.Serializable;
|
|
public class Fbs9100s_dfu_state implements Serializable{
|
private int num;
|
private int dev_id;
|
private int sysVersion_new;
|
private int softVersion_new;
|
private int sysVersion_dev;
|
private int softVersion_dev;
|
private String dfu_file;
|
private int dfu_en;
|
private int dfu_wr_stat;
|
private int dfu_data_blocknum;
|
private int dfu_file_len;
|
private int dfu_data_blocklen;
|
private String dfu_password;
|
|
private String stationName;
|
private String stationId;
|
private String fBSDeviceName;
|
|
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 getSysVersion_new() {
|
return sysVersion_new;
|
}
|
public void setSysVersion_new(int sysVersion_new) {
|
this.sysVersion_new = sysVersion_new;
|
}
|
public int getSoftVersion_new() {
|
return softVersion_new;
|
}
|
public void setSoftVersion_new(int softVersion_new) {
|
this.softVersion_new = softVersion_new;
|
}
|
public int getSysVersion_dev() {
|
return sysVersion_dev;
|
}
|
public void setSysVersion_dev(int sysVersion_dev) {
|
this.sysVersion_dev = sysVersion_dev;
|
}
|
public int getSoftVersion_dev() {
|
return softVersion_dev;
|
}
|
public void setSoftVersion_dev(int softVersion_dev) {
|
this.softVersion_dev = softVersion_dev;
|
}
|
public String getDfu_file() {
|
return dfu_file;
|
}
|
public void setDfu_file(String dfu_file) {
|
this.dfu_file = dfu_file;
|
}
|
public int getDfu_en() {
|
return dfu_en;
|
}
|
public void setDfu_en(int dfu_en) {
|
this.dfu_en = dfu_en;
|
}
|
public int getDfu_wr_stat() {
|
return dfu_wr_stat;
|
}
|
public void setDfu_wr_stat(int dfu_wr_stat) {
|
this.dfu_wr_stat = dfu_wr_stat;
|
}
|
public int getDfu_data_blocknum() {
|
return dfu_data_blocknum;
|
}
|
public void setDfu_data_blocknum(int dfu_data_blocknum) {
|
this.dfu_data_blocknum = dfu_data_blocknum;
|
}
|
public int getDfu_data_blocklen() {
|
return dfu_data_blocklen;
|
}
|
public void setDfu_data_blocklen(int dfu_data_blocklen) {
|
this.dfu_data_blocklen = dfu_data_blocklen;
|
}
|
public String getDfu_password() {
|
return dfu_password;
|
}
|
public void setDfu_password(String dfu_password) {
|
this.dfu_password = dfu_password;
|
}
|
public String getStationName() {
|
return stationName;
|
}
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
public String getStationId() {
|
return stationId;
|
}
|
public void setStationId(String stationId) {
|
this.stationId = stationId;
|
}
|
public String getfBSDeviceName() {
|
return fBSDeviceName;
|
}
|
public void setfBSDeviceName(String fBSDeviceName) {
|
this.fBSDeviceName = fBSDeviceName;
|
}
|
public int getDfu_file_len() {
|
return dfu_file_len;
|
}
|
public void setDfu_file_len(int dfu_file_len) {
|
this.dfu_file_len = dfu_file_len;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Fbs9100s_dfu_state [num=" + num + ", dev_id=" + dev_id
|
+ ", sysVersion_new=" + sysVersion_new + ", softVersion_new="
|
+ softVersion_new + ", sysVersion_dev=" + sysVersion_dev
|
+ ", softVersion_dev=" + softVersion_dev + ", dfu_file="
|
+ dfu_file + ", dfu_en=" + dfu_en + ", dfu_wr_stat="
|
+ dfu_wr_stat + ", dfu_data_blocknum=" + dfu_data_blocknum
|
+ ", dfu_file_len=" + dfu_file_len + ", dfu_data_blocklen="
|
+ dfu_data_blocklen + ", dfu_password=" + dfu_password
|
+ ", stationName=" + stationName + ", stationId=" + stationId
|
+ ", fBSDeviceName=" + fBSDeviceName + ", note=" + note + "]";
|
}
|
|
|
|
}
|