131 lines
2.7 KiB
Java
131 lines
2.7 KiB
Java
|
|
/**
|
||
|
|
*@Title: BaseStringConfig.java
|
||
|
|
*@Package com.nis.domain.restful
|
||
|
|
*@Description TODO
|
||
|
|
*@author dell
|
||
|
|
*@date 2018年2月5日 下午5:26:02
|
||
|
|
*@version 版本号
|
||
|
|
*/
|
||
|
|
package com.nis.domain.configuration;
|
||
|
|
|
||
|
|
import com.google.gson.annotations.Expose;
|
||
|
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
import com.nis.util.excel.ExcelField;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @Description: APP策略配置
|
||
|
|
* @author (dell)
|
||
|
|
* @date 2018年2月5日 下午5:26:02
|
||
|
|
* @version V1.0
|
||
|
|
*/
|
||
|
|
public class AppHttpCfg extends BaseCfg<AppHttpCfg> {
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
private static final long serialVersionUID = 7528723915857911560L;
|
||
|
|
private static final String tableName="app_http_cfg";
|
||
|
|
@Expose
|
||
|
|
private Integer compileId;
|
||
|
|
@Expose
|
||
|
|
private Integer ratelimit;
|
||
|
|
private String appCode;
|
||
|
|
private Integer specServiceId;
|
||
|
|
private String district;
|
||
|
|
private String cfgKeywords;
|
||
|
|
|
||
|
|
@Expose
|
||
|
|
@ExcelField(title="expression_type")
|
||
|
|
@SerializedName("exprType")
|
||
|
|
protected Integer exprType ;
|
||
|
|
|
||
|
|
@Expose
|
||
|
|
@ExcelField(title="match_method")
|
||
|
|
@SerializedName("matchMethod")
|
||
|
|
protected Integer matchMethod ;
|
||
|
|
|
||
|
|
@Expose
|
||
|
|
@ExcelField(title="whether_hexbinary")
|
||
|
|
@SerializedName("isHexbin")
|
||
|
|
protected Integer isHexbin;
|
||
|
|
|
||
|
|
public Integer getExprType() {
|
||
|
|
return exprType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setExprType(Integer exprType) {
|
||
|
|
this.exprType = exprType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getMatchMethod() {
|
||
|
|
return matchMethod;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setMatchMethod(Integer matchMethod) {
|
||
|
|
this.matchMethod = matchMethod;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getIsHexbin() {
|
||
|
|
return isHexbin;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setIsHexbin(Integer isHexbin) {
|
||
|
|
this.isHexbin = isHexbin;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
public void initDefaultValue() {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
super.initDefaultValue();
|
||
|
|
this.isHexbin = 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
public Integer getCompileId() {
|
||
|
|
return compileId;
|
||
|
|
}
|
||
|
|
public void setCompileId(Integer compileId) {
|
||
|
|
this.compileId = compileId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public static String getTablename() {
|
||
|
|
return tableName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getRatelimit() {
|
||
|
|
return ratelimit;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setRatelimit(Integer ratelimit) {
|
||
|
|
this.ratelimit = ratelimit;
|
||
|
|
}
|
||
|
|
public String getAppCode() {
|
||
|
|
return appCode;
|
||
|
|
}
|
||
|
|
public void setAppCode(String appCode) {
|
||
|
|
this.appCode = appCode;
|
||
|
|
}
|
||
|
|
public Integer getSpecServiceId() {
|
||
|
|
return specServiceId;
|
||
|
|
}
|
||
|
|
public void setSpecServiceId(Integer specServiceId) {
|
||
|
|
this.specServiceId = specServiceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getDistrict() {
|
||
|
|
return district;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDistrict(String district) {
|
||
|
|
this.district = district;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCfgKeywords() {
|
||
|
|
return cfgKeywords;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCfgKeywords(String cfgKeywords) {
|
||
|
|
this.cfgKeywords = cfgKeywords;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|