
cn.zkdcloud.component.message.acceptMessage.normalMessage.AcceptImageMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weChat Show documentation
Show all versions of weChat Show documentation
we can use it easy to build weChat
The newest version!
package cn.zkdcloud.component.message.acceptMessage.normalMessage;
import cn.zkdcloud.component.message.acceptMessage.AbstractAcceptNormalMessage;
/**
* 图片消息
*/
public class AcceptImageMessage extends AbstractAcceptNormalMessage {
/**
* picUrl图片路径
*/
private String picUrl;
/**
* mediaId
*/
private String mediaId;
public String getPicUrl() {
return picUrl;
}
public void setPicUrl(String picUrl) {
this.picUrl = picUrl;
}
public String getMediaId() {
return mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy