package com.newvideo.domain.web;
|
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.newvideo.domain.SuperHotStar;
|
|
/**
|
* 管理员版权关键字过滤
|
*
|
* @author Administrator
|
*
|
*/
|
public class HotStarAdmin {
|
|
public HotStarAdmin() {
|
|
}
|
|
@Expose
|
private SuperHotStar superHotStar;
|
|
@Expose
|
private List<DetailSystemSelect> detailSystemList;
|
|
public HotStarAdmin(SuperHotStar superHotStar,
|
List<DetailSystemSelect> detailSystemList) {
|
super();
|
this.superHotStar = superHotStar;
|
this.detailSystemList = detailSystemList;
|
}
|
|
public SuperHotStar getSuperHotStar() {
|
return superHotStar;
|
}
|
|
public void setSuperHotStar(SuperHotStar superHotStar) {
|
this.superHotStar = superHotStar;
|
}
|
|
public List<DetailSystemSelect> getDetailSystemList() {
|
return detailSystemList;
|
}
|
|
public void setDetailSystemList(List<DetailSystemSelect> detailSystemList) {
|
this.detailSystemList = detailSystemList;
|
}
|
|
}
|