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

weixin.popular.bean.datacube.wxapp.UserportraitResult 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.32
Show newest version
package weixin.popular.bean.datacube.wxapp;

import java.util.List;

public class UserportraitResult {

	private String ref_date;

	private VisitUv visit_uv_new;

	private VisitUv visit_uv;

	public String getRef_date() {
		return ref_date;
	}

	public void setRef_date(String ref_date) {
		this.ref_date = ref_date;
	}

	public VisitUv getVisit_uv_new() {
		return visit_uv_new;
	}

	public void setVisit_uv_new(VisitUv visit_uv_new) {
		this.visit_uv_new = visit_uv_new;
	}

	public VisitUv getVisit_uv() {
		return visit_uv;
	}

	public void setVisit_uv(VisitUv visit_uv) {
		this.visit_uv = visit_uv;
	}

	public static class VisitUv {
		private List province;

		private List city;

		private List genders;

		private List platforms;

		private List devices;

		private List ages;

		public List getProvince() {
			return province;
		}

		public void setProvince(List province) {
			this.province = province;
		}

		public List getCity() {
			return city;
		}

		public void setCity(List city) {
			this.city = city;
		}

		public List getGenders() {
			return genders;
		}

		public void setGenders(List genders) {
			this.genders = genders;
		}

		public List getPlatforms() {
			return platforms;
		}

		public void setPlatforms(List platforms) {
			this.platforms = platforms;
		}

		public List getDevices() {
			return devices;
		}

		public void setDevices(List devices) {
			this.devices = devices;
		}

		public List getAges() {
			return ages;
		}

		public void setAges(List ages) {
			this.ages = ages;
		}

	}

	public static class Item {
		private Integer id;

		private String name;

		private Integer value;

		public Integer getId() {
			return id;
		}

		public void setId(Integer id) {
			this.id = id;
		}

		public String getName() {
			return name;
		}

		public void setName(String name) {
			this.name = name;
		}

		public Integer getValue() {
			return value;
		}

		public void setValue(Integer value) {
			this.value = value;
		}

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy