package com.ks.daylucky.pojo.VO;
|
|
import com.ks.app.entity.AppInfo;
|
|
public class AcceptData {
|
private String sign;
|
private String appKey;
|
private Long timeStamp;
|
private Integer version;
|
|
|
/**
|
* 需要注入的字段
|
*/
|
private Long uid;
|
private AppInfo app;
|
|
public Long getUid() {
|
return uid;
|
}
|
|
public void setUid(Long uid) {
|
this.uid = uid;
|
}
|
|
public AppInfo getApp() {
|
return app;
|
}
|
|
public void setApp(AppInfo app) {
|
this.app = app;
|
}
|
|
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 String getAppKey() {
|
return appKey;
|
}
|
|
public void setAppKey(String appKey) {
|
this.appKey = appKey;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
|
}
|