You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
2.9 KiB
Java
136 lines
2.9 KiB
Java
package com.dowse.base.data;
|
|
|
|
/* loaded from: ds_base_2.0.9_23030112.aar:classes.jar:com/dowse/base/data/DS4GInfo.class */
|
|
public class DS4GInfo {
|
|
private int netEnable;
|
|
private String ip;
|
|
private String imei;
|
|
private String operateName;
|
|
private String netType;
|
|
private String iccid;
|
|
private String apn;
|
|
private String user;
|
|
private String password;
|
|
private String mcc;
|
|
private String mnc;
|
|
private int authtype;
|
|
private int dBm;
|
|
private int level;
|
|
|
|
public int getNetEnable() {
|
|
return this.netEnable;
|
|
}
|
|
|
|
public void setNetEnable(int netEnable) {
|
|
this.netEnable = netEnable;
|
|
}
|
|
|
|
public String getIp() {
|
|
return this.ip;
|
|
}
|
|
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
|
|
public String getImei() {
|
|
return this.imei;
|
|
}
|
|
|
|
public void setImei(String imei) {
|
|
this.imei = imei;
|
|
}
|
|
|
|
public String getOperateName() {
|
|
return this.operateName;
|
|
}
|
|
|
|
public void setOperateName(String operateName) {
|
|
this.operateName = operateName;
|
|
}
|
|
|
|
public String getNetType() {
|
|
return this.netType;
|
|
}
|
|
|
|
public void setNetType(String netType) {
|
|
this.netType = netType;
|
|
}
|
|
|
|
public String getIccid() {
|
|
return this.iccid;
|
|
}
|
|
|
|
public void setIccid(String iccid) {
|
|
this.iccid = iccid;
|
|
}
|
|
|
|
public String getApn() {
|
|
return this.apn;
|
|
}
|
|
|
|
public void setApn(String apn) {
|
|
this.apn = apn;
|
|
}
|
|
|
|
public String getUser() {
|
|
return this.user;
|
|
}
|
|
|
|
public void setUser(String user) {
|
|
this.user = user;
|
|
}
|
|
|
|
public String getPassword() {
|
|
return this.password;
|
|
}
|
|
|
|
public void setPassword(String password) {
|
|
this.password = password;
|
|
}
|
|
|
|
public String getMcc() {
|
|
return this.mcc;
|
|
}
|
|
|
|
public void setMcc(String mcc) {
|
|
this.mcc = mcc;
|
|
}
|
|
|
|
public String getMnc() {
|
|
return this.mnc;
|
|
}
|
|
|
|
public void setMnc(String mnc) {
|
|
this.mnc = mnc;
|
|
}
|
|
|
|
public int getAuthtype() {
|
|
return this.authtype;
|
|
}
|
|
|
|
public void setAuthtype(int authtype) {
|
|
this.authtype = authtype;
|
|
}
|
|
|
|
public int getdBm() {
|
|
return this.dBm;
|
|
}
|
|
|
|
public void setdBm(int dBm) {
|
|
this.dBm = dBm;
|
|
}
|
|
|
|
public int getLevel() {
|
|
return this.level;
|
|
}
|
|
|
|
public void setLevel(int level) {
|
|
this.level = level;
|
|
}
|
|
|
|
public String toString() {
|
|
return "DS4GInfo{netEnable=" + this.netEnable + ", ip='" + this.ip + "', imei='" + this.imei + "', operateName='" + this.operateName + "', netType='" + this.netType + "', iccid='" + this.iccid + "', apn='" + this.apn + "', user='" + this.user + "', password='" + this.password + "', mcc='" + this.mcc + "', mnc='" + this.mnc + "', authtype=" + this.authtype + ", dBm=" + this.dBm + ", level=" + this.level + '}';
|
|
}
|
|
}
|