package com.weikou.beibeivideo.entity.recommend; import com.weikou.beibeivideo.entity.HomeVideo; import com.weikou.beibeivideo.entity.ad.ExpressAdContainer; /** * 首页每一大项的内容 */ public class HomeTypeContent { public final static int TYPE_CONTENT = 1; public final static int TYPE_AD = 2; private int type; private ExpressAdContainer ad; private HomeVideo homeVideo; public HomeTypeContent() { } public HomeTypeContent(int type, ExpressAdContainer ad) { this.type = type; this.ad = ad; } public HomeTypeContent(int type, HomeVideo homeVideo) { this.type = type; this.homeVideo = homeVideo; } public int getType() { return type; } public void setType(int type) { this.type = type; } public ExpressAdContainer getAd() { return ad; } public void setAd(ExpressAdContainer ad) { this.ad = ad; } public HomeVideo getHomeVideo() { return homeVideo; } public void setHomeVideo(HomeVideo homeVideo) { this.homeVideo = homeVideo; } }