weixin.popular.bean.datacube.wxapp.VisitdistributionResult 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.datacube.wxapp;
import java.util.List;
public class VisitdistributionResult {
private String ref_date;
private List- list;
public String getRef_date() {
return ref_date;
}
public void setRef_date(String ref_date) {
this.ref_date = ref_date;
}
public List
- getList() {
return list;
}
public void setList(List
- list) {
this.list = list;
}
public static class Item {
private String index;
private List
item_list;
public String getIndex() {
return index;
}
public void setIndex(String index) {
this.index = index;
}
public List getItem_list() {
return item_list;
}
public void setItem_list(List item_list) {
this.item_list = item_list;
}
}
public static class Item_list {
private Integer key;
private Integer value;
public Integer getKey() {
return key;
}
public void setKey(Integer key) {
this.key = key;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
}
}