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

weixin.popular.bean.comment.Reply 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.comment;

/**
 * 作者回复
 * 
 * @author LiYi
 *
 */
public class Reply {

	private String content;

	private String create_time;

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public String getCreate_time() {
		return create_time;
	}

	public void setCreate_time(String create_time) {
		this.create_time = create_time;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy