com.tmsps.ne4weixin.bean.message.receive.ShortVideoMessageVo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ne4weixin Show documentation
Show all versions of ne4weixin Show documentation
Ne4WeiXin For Spring is good :)
package com.tmsps.ne4weixin.bean.message.receive;
import com.tmsps.ne4weixin.config.enumeration.MsgTypeEnum;
import lombok.Data;
/**
* @Title: ShortVideoMessageVo.java
* @Package: com.tmsps.ne4weixin.bean
* @Description: 接收普通消息-小视频消息
*/
@Data
public class ShortVideoMessageVo extends InBaseMessage {
/**
* 视频消息媒体id,可以调用获取临时素材接口拉取数据。
*/
private String MediaId;
/**
* 视频消息缩略图的媒体id,可以调用获取临时素材接口拉取数据。
*/
private String ThumbMediaId;
public ShortVideoMessageVo() {
super(MsgTypeEnum.SHORT_VIDEO.toName());
}
}