package com.yeshi.fanli.entity.accept;
|
|
import com.yeshi.fanli.entity.SystemEnum;
|
|
public class AcceptData {
|
private String appkey;
|
private String device;
|
private String packages;
|
private String time;
|
private String sign;
|
private String version;
|
private String apiversion;
|
private String platform;
|
private String channel;
|
private String deviceType;
|
private String osVersion;
|
private String network;
|
private String imei;
|
private String idfa;
|
private String utdid;
|
|
//注入
|
private SystemEnum system;
|
|
public SystemEnum getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemEnum system) {
|
this.system = system;
|
}
|
|
public String getUtdid() {
|
return utdid;
|
}
|
|
public void setUtdid(String utdid) {
|
this.utdid = utdid;
|
}
|
|
public String getIdfa() {
|
return idfa;
|
}
|
|
public void setIdfa(String idfa) {
|
this.idfa = idfa;
|
}
|
|
public String getImei() {
|
return imei;
|
}
|
|
public void setImei(String imei) {
|
this.imei = imei;
|
}
|
|
public String getNetwork() {
|
return network;
|
}
|
|
public void setNetwork(String network) {
|
this.network = network;
|
}
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
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;
|
}
|
|
public String getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(String platform) {
|
this.platform = platform;
|
}
|
|
public String getAppkey() {
|
return appkey;
|
}
|
|
public void setAppkey(String appkey) {
|
this.appkey = appkey;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getPackages() {
|
return packages;
|
}
|
|
public void setPackages(String packages) {
|
this.packages = packages;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getApiversion() {
|
return apiversion;
|
}
|
|
public void setApiversion(String apiversion) {
|
this.apiversion = apiversion;
|
}
|
|
}
|