package com.newvideo.domain.web;
|
|
import java.util.List;
|
|
import com.newvideo.domain.SuperUserBanner;
|
|
/**
|
* 首页顶部Banner
|
*
|
* @author Administrator
|
*
|
*/
|
public class UserBannerAdmin {
|
private SuperUserBanner userBanner;
|
private List<DetailSystemSelect> detailSystemList;
|
|
public UserBannerAdmin(SuperUserBanner userBanner,
|
List<DetailSystemSelect> detailSystemList) {
|
this.userBanner = userBanner;
|
this.detailSystemList = detailSystemList;
|
}
|
|
public SuperUserBanner getUserBanner() {
|
return userBanner;
|
}
|
|
public void setUserBanner(SuperUserBanner userBanner) {
|
this.userBanner = userBanner;
|
}
|
|
public List<DetailSystemSelect> getDetailSystemList() {
|
return detailSystemList;
|
}
|
|
public void setDetailSystemList(List<DetailSystemSelect> detailSystemList) {
|
this.detailSystemList = detailSystemList;
|
}
|
|
}
|