weixin.popular.bean.customservice.KFWaitcase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.customservice;
import java.util.List;
import weixin.popular.bean.BaseResult;
/**
* 未接入会话
* @author Menng
*/
public class KFWaitcase extends BaseResult {
private int count; // 未接入会话数量
private List waitcaselist; // 未接入会话列表,最多返回100条数据
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public List getWaitcaselist() {
return waitcaselist;
}
public void setWaitcaselist(List waitcaselist) {
this.waitcaselist = waitcaselist;
}
public static class WaitcaseList {
private Integer createtime; // 用户来访时间,UNIX时间戳
private String kf_account; // 指定接待的客服,为空表示未指定客服
private String openid; // 客户openid
private Integer latest_time;//粉丝的最后一条消息的时间
public Integer getCreatetime() {
return createtime;
}
public void setCreatetime(Integer createtime) {
this.createtime = createtime;
}
public String getKf_account() {
return kf_account;
}
public void setKf_account(String kf_account) {
this.kf_account = kf_account;
}
public String getOpenid() {
return openid;
}
public void setOpenid(String openid) {
this.openid = openid;
}
public Integer getLatest_time() {
return latest_time;
}
public void setLatest_time(Integer latest_time) {
this.latest_time = latest_time;
}
}
}