package com.smtaiserver.smtaiserver.vo; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlTransient; import lombok.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; @XmlTransient public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }