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