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