lizhanwei
2020-04-08 2f7c993b5d856f852645d998385be8fcec82acea
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package safeluck.drive.evaluation.DB.rtktb;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * MyApplication2
 * Created by lzw on 2020/1/8. 10:53:25
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
@Entity(tableName = "rtkconfig_table")
public class RTKConfig {
 
    /**
     * ip : 192.168.10.234
     * port : 8989
     * province : 23
     * city : 1
     * model : 123
     * sn : 13634757865
     * imei : 460123874561
     * phone : 13634757865
     * password : 123456789
     * registered : 1
     * interval : 1
     */
 
    private String ip;
 
    private int port;
    private int province;
    private int city;
    private String model;
    private String sn;
    private String imei;
    private String phone;
    private String password;
    private int registered;
    @PrimaryKey
    private int _id;
 
    public int get_id() {
        return _id;
    }
 
    public void set_id(int _id) {
        this._id = _id;
    }
 
    private int interval;
 
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public int getPort() {
        return port;
    }
 
    public void setPort(int port) {
        this.port = port;
    }
 
    public int getProvince() {
        return province;
    }
 
    public void setProvince(int province) {
        this.province = province;
    }
 
    public int getCity() {
        return city;
    }
 
    public void setCity(int city) {
        this.city = city;
    }
 
    public String getModel() {
        return model;
    }
 
    public void setModel(String model) {
        this.model = model;
    }
 
    public String getSn() {
        return sn;
    }
 
    public void setSn(String sn) {
        this.sn = sn;
    }
 
    public String getImei() {
        return imei;
    }
 
    public void setImei(String imei) {
        this.imei = imei;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public int getRegistered() {
        return registered;
    }
 
    public void setRegistered(int registered) {
        this.registered = registered;
    }
 
    public int getInterval() {
        return interval;
    }
 
    public void setInterval(int interval) {
        this.interval = interval;
    }
 
    @Override
    public String toString() {
        return "RTKConfig{" +
                "ip='" + ip + '\'' +
                ", port=" + port +
                ", province=" + province +
                ", city=" + city +
                ", model='" + model + '\'' +
                ", sn='" + sn + '\'' +
                ", imei='" + imei + '\'' +
                ", phone='" + phone + '\'' +
                ", password='" + password + '\'' +
                ", registered=" + registered +
                ", interval=" + interval +
                '}';
    }
 
 
}