| | |
| | | import javax.xml.bind.annotation.XmlElement; |
| | | import lombok.Setter; |
| | | |
| | | @Setter |
| | | public class MediaVo { |
| | | @XmlElement(name = "MediaId") |
| | | private String mediaId; |
| | | @XmlElement(name = "item") |
| | | private Item item; |
| | | @XmlElement(name = "Title") |
| | | private String title; |
| | | @XmlElement(name = "Description") |
| | | private String description; |
| | | @XmlElement(name = "MusicUrl") |
| | | private String musicUrl; |
| | | @XmlElement(name = "HQMusicUrl") |
| | | private String hQMusicUrl; |
| | | @XmlElement(name = "ThumbMediaId") |
| | | private String thumbMediaId; |
| | | @XmlElement(name = "MediaId") |
| | | private String mediaId; |
| | | |
| | | @XmlElement(name = "item") |
| | | private Item item; |
| | | |
| | | @XmlElement(name = "Title") |
| | | private String title; |
| | | |
| | | @XmlElement(name = "Description") |
| | | private String description; |
| | | |
| | | @XmlElement(name = "MusicUrl") |
| | | private String musicUrl; |
| | | |
| | | @XmlElement(name = "HQMusicUrl") |
| | | private String hQMusicUrl; |
| | | |
| | | @XmlElement(name = "ThumbMediaId") |
| | | private String thumbMediaId; |
| | | |
| | | public String getMediaId() { |
| | | return mediaId; |
| | | } |
| | | |
| | | public void setMediaId(String mediaId) { |
| | | this.mediaId = mediaId; |
| | | } |
| | | |
| | | public Item getItem() { |
| | | return item; |
| | | } |
| | | |
| | | public void setItem(Item item) { |
| | | this.item = item; |
| | | } |
| | | |
| | | 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 getThumbMediaId() { |
| | | return thumbMediaId; |
| | | } |
| | | |
| | | public void setThumbMediaId(String thumbMediaId) { |
| | | this.thumbMediaId = thumbMediaId; |
| | | } |
| | | } |