package com.yeshi.buwan.domain.entity;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.VideoResource;
|
|
public class PlayUrl {
|
@Expose
|
private VideoResource resource;
|
@Expose
|
private String url;
|
@Expose
|
private int playType;// 播放类型 0-不能播放 1-站外 2-站内
|
@Expose
|
private String params;
|
|
public VideoResource getResource() {
|
return resource;
|
}
|
|
public void setResource(VideoResource resource) {
|
this.resource = resource;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public int getPlayType() {
|
return playType;
|
}
|
|
public void setPlayType(int playType) {
|
this.playType = playType;
|
}
|
|
public String getParams() {
|
return params;
|
}
|
|
public void setParams(String params) {
|
this.params = params;
|
}
|
}
|