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

com.tmsps.ne4weixin.bean.message.custom.MpCardMessage Maven / Gradle / Ivy

There is a newer version: 3.2.2.3
Show newest version
package com.tmsps.ne4weixin.bean.message.custom;

import com.tmsps.ne4weixin.bean.message.custom.vo.WxCard;
import com.tmsps.ne4weixin.config.enumeration.MsgTypeEnum;

/**
 * @Title: MpCardMessage.java
 * @Package: com.tmsps.ne4weixin.bean.custom
 * @Description: 客服消息-发送卡券
 * @author: hanjiefei
 * @date: 2019-10-18
 * @version V1.0
 * @Copyright: 2019 
 */
public class MpCardMessage extends BaseMessage {

	/**
	 * 卡券
	 */
	private WxCard wxcard;
	 
	public MpCardMessage(String touser, String card_id) {
		super(touser, MsgTypeEnum.WXCARD);
		this.wxcard = new WxCard(card_id);
	}
	
	public MpCardMessage(String touser, WxCard wxcard) {
		super(touser, MsgTypeEnum.WXCARD);
		this.wxcard = wxcard;
	}

	public WxCard getWxcard() {
		return wxcard;
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy