Revert "Pojo统一修改compileId类型为Long"

This reverts commit 3e935610b3
This commit is contained in:
wangxin
2018-05-23 18:16:07 -04:00
parent 3e935610b3
commit f78efd59bc
6 changed files with 18 additions and 18 deletions

View File

@@ -37,7 +37,7 @@ public class AppIdCfg extends BaseCfg<AppIdCfg> {
/**
* 编译id
*/
private Long compileId;
private Integer compileId;
/**
* 协议字符串特征表信息列表
@@ -132,14 +132,14 @@ public class AppIdCfg extends BaseCfg<AppIdCfg> {
* @return compileId
*/
public Long getCompileId() {
public Integer getCompileId() {
return compileId;
}
/**
* @param compileId the compileId to set
*/
public void setCompileId(Long compileId) {
public void setCompileId(Integer compileId) {
this.compileId = compileId;
}