package com.newvideo.domain.special;
|
|
import com.google.gson.annotations.Expose;
|
import com.newvideo.domain.VideoInfo;
|
|
public class SpecialVideo {
|
@Expose
|
private String id;
|
private Special special;
|
@Expose
|
private VideoInfo video;
|
@Expose
|
private String createtime;
|
private int orderby;
|
|
public int getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(int orderby) {
|
this.orderby = orderby;
|
}
|
|
public SpecialVideo() {
|
}
|
|
public SpecialVideo(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public Special getSpecial() {
|
return special;
|
}
|
|
public void setSpecial(Special special) {
|
this.special = special;
|
}
|
|
public VideoInfo getVideo() {
|
return video;
|
}
|
|
public void setVideo(VideoInfo video) {
|
this.video = video;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|