com.hina.sdk.user.UserReq Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of HinaCloudSDK Show documentation
Show all versions of HinaCloudSDK Show documentation
The official Java SDK of Hina Analytics
The newest version!
package com.hina.sdk.user;
import java.util.Map;
public class UserReq {
private String userUid; //用户ID
private Map data; //发送数据
private Long reqTime;//请求时间
private String type;//请求类型
public UserReq(String userUid, Map data,String type) {
this.userUid = userUid;
this.data = data;
this.reqTime=System.currentTimeMillis();
this.type=type;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUserUid() {
return userUid;
}
public void setUserUid(String userUid) {
this.userUid = userUid;
}
public Map getData() {
return data;
}
public void setData(Map data) {
this.data = data;
}
public Long getReqTime() {
return reqTime;
}
public void setReqTime(Long reqTime) {
this.reqTime = reqTime;
}
}