package com.newvideo.domain.web; import java.util.List; import com.newvideo.domain.SuperHomeAd; /** * 首页顶部Banner * * @author Administrator * */ public class HomeAdAdmin { private SuperHomeAd homeAd; private List detailSystemList; public HomeAdAdmin(SuperHomeAd homeAd, List detailSystemList) { super(); this.homeAd = homeAd; this.detailSystemList = detailSystemList; } public SuperHomeAd getHomeAd() { return homeAd; } public void setHomeAd(SuperHomeAd homeAd) { this.homeAd = homeAd; } public List getDetailSystemList() { return detailSystemList; } public void setDetailSystemList(List detailSystemList) { this.detailSystemList = detailSystemList; } }