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