更新 DeviceInfo.java
parent
79a246cbd6
commit
38e391ff46
|
|
@ -4,16 +4,16 @@ public class DeviceInfo {
|
|||
private String deviceBrand;
|
||||
private String deviceModel;
|
||||
private String androidVersion;
|
||||
private String SN;
|
||||
private String sn;
|
||||
|
||||
public DeviceInfo() {
|
||||
}
|
||||
|
||||
public DeviceInfo(String deviceBrand, String deviceModel, String androidVersion,String SN) {
|
||||
public DeviceInfo(String deviceBrand, String deviceModel, String androidVersion,String sn) {
|
||||
this.deviceBrand = deviceBrand;
|
||||
this.deviceModel = deviceModel;
|
||||
this.androidVersion = androidVersion;
|
||||
this.SN = SN;
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
public String getDeviceBrand() {
|
||||
|
|
@ -40,12 +40,12 @@ public class DeviceInfo {
|
|||
this.androidVersion = androidVersion;
|
||||
}
|
||||
|
||||
public String getSN() {
|
||||
return SN;
|
||||
public String getSn() {
|
||||
return sn;
|
||||
}
|
||||
|
||||
public void setSN(String SN) {
|
||||
this.SN = SN;
|
||||
public void setSn(String sn) {
|
||||
this.sn = sn;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -54,7 +54,7 @@ public class DeviceInfo {
|
|||
"deviceBrand='" + deviceBrand + '\'' +
|
||||
", deviceModel='" + deviceModel + '\'' +
|
||||
", androidVersion='" + androidVersion + '\'' +
|
||||
", SN='" + SN + '\'' +
|
||||
", SN='" + sn + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue