ratelimit数据库改为varchar,pojo改为String

This commit is contained in:
wangxin
2018-08-25 16:37:39 +08:00
parent 4233142304
commit 0354487dc8
25 changed files with 101 additions and 87 deletions

View File

@@ -109,20 +109,20 @@ public class BaseIpCfg extends BaseCfg<BaseIpCfg> {
/**
* 限速比例
*/
protected Integer ratelimit ;
protected String ratelimit ;
/**
* ratelimit
* @return ratelimit
*/
public Integer getRatelimit() {
public String getRatelimit() {
return ratelimit;
}
/**
* @param ratelimit the ratelimit to set
*/
public void setRatelimit(Integer ratelimit) {
public void setRatelimit(String ratelimit) {
this.ratelimit = ratelimit;
}
/**