From a0ddeb0c940e7fd808a4cf98afafd5401625a6bb Mon Sep 17 00:00:00 2001 From: endian11 <Dana_Lee1016@126.com> Date: 星期三, 08 一月 2020 10:54:59 +0800 Subject: [PATCH] 提交RTKConfig --- app/src/main/java/safeluck/drive/evaluation/bean/RTKConfig.java | 124 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 124 insertions(+), 0 deletions(-) diff --git a/app/src/main/java/safeluck/drive/evaluation/bean/RTKConfig.java b/app/src/main/java/safeluck/drive/evaluation/bean/RTKConfig.java new file mode 100644 index 0000000..438bdcf --- /dev/null +++ b/app/src/main/java/safeluck/drive/evaluation/bean/RTKConfig.java @@ -0,0 +1,124 @@ +package safeluck.drive.evaluation.bean; + +/** + * MyApplication2 + * Created by lzw on 2020/1/8. 10:53:25 + * 閭锛�632393724@qq.com + * All Rights Saved! Chongqing AnYun Tech co. LTD + */ +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; + 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; + } +} -- Gitblit v1.8.0