更改字段类型

This commit is contained in:
wangxin
2018-02-24 15:59:48 +08:00
parent 30b44b1971
commit 39d999758a
3 changed files with 13 additions and 13 deletions

View File

@@ -33,7 +33,7 @@ public class AreaIpCfg extends BaseIpCfg {
super.initDefaultValue(); super.initDefaultValue();
this.protocolId=0; this.protocolId=0;
this.isAreaEffective=0; this.isAreaEffective=0;
this.areaEffectiveIds="NULL"; this.areaEffectiveIds=null;
} }
} }

View File

@@ -52,7 +52,7 @@ public class BaseCfg<T> extends BaseEntity<T> {
/** /**
* 创建人员 * 创建人员
*/ */
protected Integer creatorId; protected Long creatorId;
/** /**
* 配置时间 * 配置时间
*/ */
@@ -60,7 +60,7 @@ public class BaseCfg<T> extends BaseEntity<T> {
/** /**
* 修改人员 * 修改人员
*/ */
protected Integer editorId; protected Long editorId;
/** /**
* 修改时间 * 修改时间
*/ */
@@ -68,7 +68,7 @@ public class BaseCfg<T> extends BaseEntity<T> {
/** /**
* 审核人员 * 审核人员
*/ */
protected Integer auditorId; protected Long auditorId;
/** /**
* 审核时间 * 审核时间
*/ */
@@ -169,13 +169,13 @@ public class BaseCfg<T> extends BaseEntity<T> {
* @return creatorId * @return creatorId
*/ */
public Integer getCreatorId() { public Long getCreatorId() {
return creatorId; return creatorId;
} }
/** /**
* @param creatorId the creatorId to set * @param creatorId the creatorId to set
*/ */
public void setCreatorId(Integer creatorId) { public void setCreatorId(Long creatorId) {
this.creatorId = creatorId; this.creatorId = creatorId;
} }
/** /**
@@ -197,13 +197,13 @@ public class BaseCfg<T> extends BaseEntity<T> {
* @return editorId * @return editorId
*/ */
public Integer getEditorId() { public Long getEditorId() {
return editorId; return editorId;
} }
/** /**
* @param editorId the editorId to set * @param editorId the editorId to set
*/ */
public void setEditorId(Integer editorId) { public void setEditorId(Long editorId) {
this.editorId = editorId; this.editorId = editorId;
} }
/** /**
@@ -225,13 +225,13 @@ public class BaseCfg<T> extends BaseEntity<T> {
* @return auditorId * @return auditorId
*/ */
public Integer getAuditorId() { public Long getAuditorId() {
return auditorId; return auditorId;
} }
/** /**
* @param auditorId the auditorId to set * @param auditorId the auditorId to set
*/ */
public void setAuditorId(Integer auditorId) { public void setAuditorId(Long auditorId) {
this.auditorId = auditorId; this.auditorId = auditorId;
} }
/** /**

View File

@@ -74,7 +74,7 @@ public class BaseIpCfg extends BaseCfg<BaseIpCfg> {
/** /**
* 编译id * 编译id
*/ */
protected Integer compileId ; protected Long compileId ;
/** /**
* ipType * ipType
* @return ipType * @return ipType
@@ -248,13 +248,13 @@ public class BaseIpCfg extends BaseCfg<BaseIpCfg> {
* @return compileId * @return compileId
*/ */
public Integer getCompileId() { public Long getCompileId() {
return compileId; return compileId;
} }
/** /**
* @param compileId the compileId to set * @param compileId the compileId to set
*/ */
public void setCompileId(Integer compileId) { public void setCompileId(Long compileId) {
this.compileId = compileId; this.compileId = compileId;
} }
@Override @Override