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

weixin.popular.bean.datacube.wxapp.RetaininfoResult 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 RetaininfoResult {

	private String ref_date;

	private List visit_uv_new;

	private List visit_uv;

	public String getRef_date() {
		return ref_date;
	}

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

	public List getVisit_uv_new() {
		return visit_uv_new;
	}

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

	public List getVisit_uv() {
		return visit_uv;
	}

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

	public static class Item {
		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