package com.yeshi.buwan.domain.web; import java.util.List; import com.google.gson.annotations.Expose; import com.yeshi.buwan.domain.VideoBanQuan; /** * 管理员版权关键字过滤 * * @author Administrator * */ public class BanquanKeyAdmin { public BanquanKeyAdmin(VideoBanQuan banquan, List detailSystemList) { super(); this.banquan = banquan; this.detailSystemList = detailSystemList; } public BanquanKeyAdmin() { } @Expose private VideoBanQuan banquan; @Expose private List detailSystemList; public VideoBanQuan getBanquan() { return banquan; } public void setBanquan(VideoBanQuan banquan) { this.banquan = banquan; } public List getDetailSystemList() { return detailSystemList; } public void setDetailSystemList(List detailSystemList) { this.detailSystemList = detailSystemList; } }