com.tmsps.ne4weixin.bean.message.custom.vo.Music 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: Music.java
* @Package: com.tmsps.ne4weixin.bean.send
* @Description: 音乐
* @author: hanjiefei
* @date: 2019-10-18
* @version V1.0
* @Copyright: 2019
*/
public class Music {
/**
* 必填 否 音乐标题
*/
private String title;
/**
* 必填 否 音乐描述
*/
private String description;
/**
* 必填 是 音乐链接
*/
private String musicurl;
/**
* 必填 是 高质量音乐链接,WIFI环境优先使用该链接播放音乐
*/
private String hqmusicurl;
/**
* 必填 是 缩略图的媒体id,通过素材管理中的接口上传多媒体文件,得到的id
*/
private String thumb_media_id;
/**
* @param thumbMediaId 必填 是 缩略图的媒体id,通过素材管理中的接口上传多媒体文件,得到的id
*/
public Music(String thumbMediaId) {
super();
this.thumb_media_id = thumbMediaId;
}
public Music(String musicurl, String hqmusicurl, String thumb_media_id) {
super();
this.musicurl = musicurl;
this.hqmusicurl = hqmusicurl;
this.thumb_media_id = thumb_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 getMusicurl() {
return musicurl;
}
public void setMusicurl(String musicurl) {
this.musicurl = musicurl;
}
public String getHqmusicurl() {
return hqmusicurl;
}
public void setHqmusicurl(String hqmusicurl) {
this.hqmusicurl = hqmusicurl;
}
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;
}
}