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<DetailSystemSelect> detailSystemList;
|
|
public HotTypeAdmin(HotVideoType hotType,
|
List<DetailSystemSelect> detailSystemList) {
|
super();
|
this.hotType = hotType;
|
this.detailSystemList = detailSystemList;
|
}
|
|
public HotVideoType getHotType() {
|
return hotType;
|
}
|
|
public void setHotType(HotVideoType hotType) {
|
this.hotType = hotType;
|
}
|
|
public List<DetailSystemSelect> getDetailSystemList() {
|
return detailSystemList;
|
}
|
|
public void setDetailSystemList(List<DetailSystemSelect> detailSystemList) {
|
this.detailSystemList = detailSystemList;
|
}
|
|
}
|