package com.yeshi.buwan.domain.web;
|
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.VideoType;
|
|
/**
|
* 首页呈现的视频大分类
|
*
|
* @author Administrator
|
*
|
*/
|
public class VideoTypeAdmin {
|
@Expose
|
private VideoType videoType;
|
@Expose
|
private List<DetailSystemSelect> detailSystemList;
|
|
public VideoTypeAdmin(VideoType videoType,
|
List<DetailSystemSelect> detailSystemList) {
|
super();
|
this.videoType = videoType;
|
this.detailSystemList = detailSystemList;
|
}
|
|
public VideoType getVideoType() {
|
return videoType;
|
}
|
|
|
public void setVideoType(VideoType videoType) {
|
this.videoType = videoType;
|
}
|
|
|
|
public List<DetailSystemSelect> getDetailSystemList() {
|
return detailSystemList;
|
}
|
|
public void setDetailSystemList(List<DetailSystemSelect> detailSystemList) {
|
this.detailSystemList = detailSystemList;
|
}
|
|
}
|