|
@@ -12,7 +12,7 @@ public class DownLoadSongStatus implements Parcelable {
|
|
|
private int downStatus;
|
|
|
private int playStatus;
|
|
|
private int accompanimentPlayStatus;
|
|
|
- private int speed;
|
|
|
+ private String speed;
|
|
|
private String url;
|
|
|
private String mp3Url;
|
|
|
private String musicScoreName;
|
|
@@ -20,7 +20,7 @@ public class DownLoadSongStatus implements Parcelable {
|
|
|
public DownLoadSongStatus() {
|
|
|
}
|
|
|
|
|
|
- public DownLoadSongStatus(String musicScoreAccompanimentId, int downStatus, int playStatus, int accompanimentPlayStatus, int speed, String url, String mp3Url, String musicScoreName) {
|
|
|
+ public DownLoadSongStatus(String musicScoreAccompanimentId, int downStatus, int playStatus, int accompanimentPlayStatus, String speed, String url, String mp3Url, String musicScoreName) {
|
|
|
this.musicScoreAccompanimentId = musicScoreAccompanimentId;
|
|
|
this.downStatus = downStatus;
|
|
|
this.playStatus = playStatus;
|
|
@@ -36,7 +36,7 @@ public class DownLoadSongStatus implements Parcelable {
|
|
|
downStatus = in.readInt();
|
|
|
playStatus = in.readInt();
|
|
|
accompanimentPlayStatus = in.readInt();
|
|
|
- speed = in.readInt();
|
|
|
+ speed = in.readString();
|
|
|
url = in.readString();
|
|
|
mp3Url = in.readString();
|
|
|
musicScoreName = in.readString();
|
|
@@ -66,11 +66,11 @@ public class DownLoadSongStatus implements Parcelable {
|
|
|
this.accompanimentPlayStatus = accompanimentPlayStatus;
|
|
|
}
|
|
|
|
|
|
- public int getSpeed() {
|
|
|
+ public String getSpeed() {
|
|
|
return speed;
|
|
|
}
|
|
|
|
|
|
- public void setSpeed(int speed) {
|
|
|
+ public void setSpeed(String speed) {
|
|
|
this.speed = speed;
|
|
|
}
|
|
|
|
|
@@ -132,7 +132,7 @@ public class DownLoadSongStatus implements Parcelable {
|
|
|
dest.writeInt(downStatus);
|
|
|
dest.writeInt(playStatus);
|
|
|
dest.writeInt(accompanimentPlayStatus);
|
|
|
- dest.writeInt(speed);
|
|
|
+ dest.writeString(speed);
|
|
|
dest.writeString(url);
|
|
|
dest.writeString(mp3Url);
|
|
|
dest.writeString(musicScoreName);
|