com.tmsps.ne4weixin.bean.message.custom.vo.Video 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.custom.vo;
/**
* @Title: Video.java
* @Package: com.tmsps.ne4weixin.bean.send
* @Description: 视频
* @author: hanjiefei
* @date: 2019-10-18
* @version V1.0
* @Copyright: 2019
*/
public class Video {
/**
* 必填 是 通过素材管理中的接口上传多媒体文件,得到的id
*/
private String media_id;
/**
* 必填 否 视频消息的标题
*/
private String title;
/**
* 必填 否 视频消息的描述
*/
private String description;
/**
* 必填 是 缩略图
*/
private String thumb_media_id;
/**
* @param mediaId 必填 是 通过素材管理中的接口上传多媒体文件,得到的id
*/
public Video(String mediaId) {
super();
this.media_id = mediaId;
}
public Video(String mediaId,String thumb_media_id) {
super();
this.media_id = mediaId;
this.thumb_media_id = thumb_media_id;
}
public String getMedia_id() {
return media_id;
}
public void setMedia_id(String media_id) {
this.media_id = media_id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getThumb_media_id() {
return thumb_media_id;
}
public void setThumb_media_id(String thumb_media_id) {
this.thumb_media_id = thumb_media_id;
}
}