
cn.zkdcloud.component.message.acceptMessage.normalMessage.AcceptVideoMessage 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 AcceptVideoMessage extends AbstractAcceptNormalMessage {
/**
* mediaId
*/
private String mediaId;
/**
* 视频消息缩略图的媒体id
*/
private String thumMediaId;
public String getMediaId() {
return mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
}
public String getThumMediaId() {
return thumMediaId;
}
public void setThumMediaId(String thumMediaId) {
this.thumMediaId = thumMediaId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy