package com.yeshi.buwan.domain.web; import java.util.List; import com.yeshi.buwan.domain.HotVideoType; /** * 热门分类 * * @author Administrator * */ public class HotTypeAdmin { private HotVideoType hotType; private List detailSystemList; public HotTypeAdmin(HotVideoType hotType, List detailSystemList) { super(); this.hotType = hotType; this.detailSystemList = detailSystemList; } public HotVideoType getHotType() { return hotType; } public void setHotType(HotVideoType hotType) { this.hotType = hotType; } public List getDetailSystemList() { return detailSystemList; } public void setDetailSystemList(List detailSystemList) { this.detailSystemList = detailSystemList; } }