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

@@ -33,7 +33,7 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
/**
* 编译id
*/
protected Long compileId ;
protected Integer compileId ;
/**
* @Fields serialVersionUID:TODO用一句话描述这个变量表示什么
*
@@ -696,13 +696,13 @@ public class BaseCfg<T> extends BaseEntity<T> implements Cloneable{
* @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;
}
/* (non-Javadoc)