package com.yeshi.fanli.entity;
|
|
//设备信息
|
public class DeviceInfo {
|
private String device;
|
private String platform;
|
private String deviceType;
|
private String osVersion;
|
private String network;
|
|
public String getNetwork() {
|
return network;
|
}
|
|
public void setNetwork(String network) {
|
this.network = network;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(String platform) {
|
this.platform = platform;
|
}
|
|
public String getDeviceType() {
|
return deviceType;
|
}
|
|
public void setDeviceType(String deviceType) {
|
this.deviceType = deviceType;
|
}
|
|
public String getOsVersion() {
|
return osVersion;
|
}
|
|
public void setOsVersion(String osVersion) {
|
this.osVersion = osVersion;
|
}
|
}
|