This commit is contained in:
Yutousama 2020-11-29 20:21:08 +08:00
parent b65001f42a
commit b7be1f1d8a

View File

@ -190,7 +190,7 @@ public class MusicData {
return NetworkTool.NetworkAPI.HOME + NetworkTool.NetworkAPI.MUSIC_PLAY return NetworkTool.NetworkAPI.HOME + NetworkTool.NetworkAPI.MUSIC_PLAY
+ "?random=false&token=" + NetworkTool.NetworkAPI.HTTP_KEY + "&filePath=" + getFileBase64(); + "?random=false&token=" + NetworkTool.NetworkAPI.HTTP_KEY + "&filePath=" + getFileBase64();
} }
@Ignore
private boolean isDownloadImg = false; private boolean isDownloadImg = false;
public String getImageUrl() { public String getImageUrl() {
@ -358,6 +358,14 @@ public class MusicData {
this.md5 = md5; this.md5 = md5;
} }
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
@Override @Override
public boolean equals(@Nullable Object obj) { public boolean equals(@Nullable Object obj) {
if (obj instanceof MusicData) { if (obj instanceof MusicData) {