package com.newvideo.vo;
|
|
public class AcceptData {
|
|
private String method;
|
private String device;
|
private String system;
|
private String sign;
|
private String platform;
|
private String channel;
|
private Integer version;
|
private String Package;
|
|
public String getMethod() {
|
return method;
|
}
|
|
public void setMethod(String method) {
|
this.method = method;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getSystem() {
|
return system;
|
}
|
|
public void setSystem(String system) {
|
this.system = system;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
public String getPlatform() {
|
return platform;
|
}
|
|
public void setPlatform(String platform) {
|
this.platform = platform;
|
}
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
|
public String getPackage() {
|
return Package;
|
}
|
|
public void setPackage(String aPackage) {
|
Package = aPackage;
|
}
|
}
|