package com.terra.proxy.bean;
|
|
public class BlackRule {
|
//记录数
|
private Integer count;
|
//拦截周期
|
private Integer time;
|
|
private Integer id;
|
|
private String seltime;
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Integer getTime() {
|
return time;
|
}
|
|
public void setTime(Integer time) {
|
this.time = time;
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getSeltime() {
|
return seltime;
|
}
|
|
public void setSeltime(String seltime) {
|
this.seltime = seltime;
|
}
|
}
|