PlayUrl1.java
1.13 KB
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
package com.cnlive.goldenline.model;
import android.support.annotation.NonNull;
import java.io.Serializable;
import java.util.List;
/**
* @创建者 xk
* @创建时间 2016/8/1717:35
* @描述 ${TODO}
*/
public class PlayUrl1 implements Serializable {
private List<PlayUrlTypeItem> playUrl;
private String errorCode;
private String errorMessage;
public List<PlayUrlTypeItem> getPlayUrl() {
return playUrl;
}
private void setPlayUrl(List<PlayUrlTypeItem> playUrl) {
this.playUrl = playUrl;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
@NonNull
@Override
public String toString() {
return "PlayUrl1{" +
"errorCode='" + errorCode + '\'' +
", playUrl=" + playUrl +
", errorMessage='" + errorMessage + '\'' +
'}';
}
}