All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.mp.care.bean.WaitingSessions Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.mp.care.bean;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * Created by exizhai on 11/22/2015.
 */
public class WaitingSessions {

    private int count;

    @JsonProperty("waitcaselist")
    private List sessions;

    /**
     * 总的未处理session数
     */
    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    /**
     * 只会返回前100个未处理session
     */
    public List getSessions() {
        return sessions;
    }

    public void setSessions(List sessions) {
        this.sessions = sessions;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy