package com.newvideo.domain.web; import java.util.List; import com.google.gson.annotations.Expose; import com.newvideo.domain.SuperHotStar; /** * 管理员版权关键字过滤 * * @author Administrator * */ public class HotStarAdmin { public HotStarAdmin() { } @Expose private SuperHotStar superHotStar; @Expose private List detailSystemList; public HotStarAdmin(SuperHotStar superHotStar, List detailSystemList) { super(); this.superHotStar = superHotStar; this.detailSystemList = detailSystemList; } public SuperHotStar getSuperHotStar() { return superHotStar; } public void setSuperHotStar(SuperHotStar superHotStar) { this.superHotStar = superHotStar; } public List getDetailSystemList() { return detailSystemList; } public void setDetailSystemList(List detailSystemList) { this.detailSystemList = detailSystemList; } }