weixin.popular.bean.message.templatemessage.TemplateMessageMiniProgram Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weixin-popular Show documentation
Show all versions of weixin-popular Show documentation
The weixin-popular is a JAVA SDK for weixin. Weixin web url is https://mp.weixin.qq.com.
package weixin.popular.bean.message.templatemessage;
/**
* 发送的微信模板消息、客服消息中带有跳转小程序的信息
*
* @author dave.wu
* @version 2018/1/9
*/
public class TemplateMessageMiniProgram {
private String appid;
private String pagepath;
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
public String getPagepath() {
return pagepath;
}
public void setPagepath(String pagepath) {
this.pagepath = pagepath;
}
}