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

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

/**
 * 发送卡券
 *
 * @author LiYi
 */
public class WxcardMessage extends Message {

    public WxcardMessage() {
    }

    public WxcardMessage(String touser) {
        super(touser, "wxcard");
    }

    public WxcardMessage(String touser, String card_id) {
        this(touser);
        this.wxcard = new Wxcard();
        this.wxcard.setCard_id(card_id);
    }

    private Wxcard wxcard;

    public Wxcard getWxcard() {
        return wxcard;
    }

    public void setWxcard(Wxcard wxcard) {
        this.wxcard = wxcard;
    }

    public static class Wxcard {

        private String card_id;

        public String getCard_id() {
            return card_id;
        }

        public void setCard_id(String card_id) {
            this.card_id = card_id;
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy