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

weixin.popular.bean.datacube.wxapp.VisitdistributionResult Maven / Gradle / Ivy

Go to download

The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.

There is a newer version: 2.8.43
Show newest version
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;
		}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy