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

weixin.popular.bean.xmlmessage.XMLTransferCustomerServiceMessage 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.xmlmessage;

/**
 * 
 * 消息转发到多客服
 * @author LiYi
 *
 */
public class XMLTransferCustomerServiceMessage extends XMLMessage{

	private String kfAccount;
	
	/**
	 * 消息转发到多客服
	 * @param toUserName toUserName
	 * @param fromUserName fromUserName
	 * @param kfAccount 可以为空
	 */
	public XMLTransferCustomerServiceMessage(String toUserName, String fromUserName,String kfAccount) {
		super(toUserName, fromUserName, "transfer_customer_service");
		this.kfAccount = kfAccount;
	}


	@Override
	public String subXML() {
		if(kfAccount == null){
			return "";
		}else{
			return "";
		}
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy