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

weixin.popular.bean.message.CopyrightCheckResult 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.message;

import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "CopyrightCheckResult")
@XmlAccessorType(XmlAccessType.FIELD)
public class CopyrightCheckResult {

	private Integer Count;
	
	@XmlElementWrapper(name = "ResultList")
	@XmlElement(name = "item")
	private List ResultList;
	
	private Integer CheckState;	//整体校验结果  1-未被判为转载,可以群发,2-被判为转载,可以群发,3-被判为转载,不能群发

	public Integer getCount() {
		return Count;
	}

	public void setCount(Integer count) {
		Count = count;
	}

	public List getResultList() {
		return ResultList;
	}

	public void setResultList(List resultList) {
		ResultList = resultList;
	}

	public Integer getCheckState() {
		return CheckState;
	}

	public void setCheckState(Integer checkState) {
		CheckState = checkState;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy