qfrjava
2025-03-05 7c5e7f63d981d8c4515f5c6a73f9b39cca02b7f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.smtaiserver.smtaiserver.vo;
 
import javax.xml.bind.annotation.XmlElement;
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;
 
  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;
  }
}