package com.newvideo.domain.juhe; //聚合过程关键字过滤 public class JuHeFilterKey { private String id; private String key; private boolean show; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public boolean isShow() { return show; } public void setShow(boolean show) { this.show = show; } }