package com.ks.app.vo;
|
|
import com.ks.app.entity.APPPlatform;
|
import com.ks.app.entity.SystemEnum;
|
|
/**
|
* @author hxh
|
* @title: AcceptData
|
* @description: 接口基础数据
|
* @date 2021/11/16 17:40
|
*/
|
public class AcceptData {
|
//时间戳
|
private long timestamp;
|
private String sign;
|
private SystemEnum system;
|
private APPPlatform platform;
|
private String packages;
|
private int version;
|
private String channel;
|
private String osVersion;
|
private String idfa;
|
private String utdId;
|
private String deviceType;
|
|
public long getTimestamp() {
|
return timestamp;
|
}
|
|
public void setTimestamp(long timestamp) {
|
this.timestamp = timestamp;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
public SystemEnum getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemEnum system) {
|
this.system = system;
|
}
|
|
public APPPlatform getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(APPPlatform platform) {
|
this.platform = platform;
|
}
|
|
public String getPackages() {
|
return packages;
|
}
|
|
public void setPackages(String packages) {
|
this.packages = packages;
|
}
|
|
public int getVersion() {
|
return version;
|
}
|
|
public void setVersion(int version) {
|
this.version = version;
|
}
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
public String getOsVersion() {
|
return osVersion;
|
}
|
|
public void setOsVersion(String osVersion) {
|
this.osVersion = osVersion;
|
}
|
|
public String getIdfa() {
|
return idfa;
|
}
|
|
public void setIdfa(String idfa) {
|
this.idfa = idfa;
|
}
|
|
public String getUtdId() {
|
return utdId;
|
}
|
|
public void setUtdId(String utdId) {
|
this.utdId = utdId;
|
}
|
|
public String getDeviceType() {
|
return deviceType;
|
}
|
|
public void setDeviceType(String deviceType) {
|
this.deviceType = deviceType;
|
}
|
}
|