whyclj
2020-07-22 a5729100cb1eaa3584b3a194e46e1b8b52b3ed1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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 + "]";
    }
    
    
    
}