package com.newvideo.domain.web; import java.util.List; import com.google.gson.annotations.Expose; import com.newvideo.domain.SuperHomeNotice; /** * 首页顶部Banner * * @author Administrator * */ public class HomeNoticeAdmin { @Expose private SuperHomeNotice homeNotice; @Expose private List detailSystemList; public HomeNoticeAdmin(SuperHomeNotice homeNotice, List detailSystemList) { super(); this.homeNotice = homeNotice; this.detailSystemList = detailSystemList; } public SuperHomeNotice getHomeNotice() { return homeNotice; } public void setHomeNotice(SuperHomeNotice homeNotice) { this.homeNotice = homeNotice; } public List getDetailSystemList() { return detailSystemList; } public void setDetailSystemList(List detailSystemList) { this.detailSystemList = detailSystemList; } }