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

weixin.popular.bean.message.templatemessage.TemplateMessageMiniProgram 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.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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy