package com.newvideo.domain;
|
|
import com.google.gson.annotations.Expose;
|
|
public class FindVideo {
|
@Expose
|
private Long id;
|
@Expose
|
private VideoInfo videoInfo;
|
@Expose
|
private String picture;
|
private Integer orderBy;
|
@Expose
|
private String tag;
|
@Expose
|
private String type;
|
|
private FindClass findClass;
|
public FindVideo() {
|
}
|
|
public FindVideo(Long id) {
|
super();
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public VideoInfo getVideoInfo() {
|
return videoInfo;
|
}
|
public void setVideoInfo(VideoInfo videoInfo) {
|
this.videoInfo = videoInfo;
|
}
|
public String getPicture() {
|
return picture;
|
}
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
public Integer getOrderBy() {
|
return orderBy;
|
}
|
public void setOrderBy(Integer orderBy) {
|
this.orderBy = orderBy;
|
}
|
public String getTag() {
|
return tag;
|
}
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
public FindClass getFindClass() {
|
return findClass;
|
}
|
public void setFindClass(FindClass findClass) {
|
this.findClass = findClass;
|
}
|
public String getType() {
|
return type;
|
}
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
}
|