diff --git a/src/main/java/com/nis/domain/configuration/AreaIpCfg.java b/src/main/java/com/nis/domain/configuration/AreaIpCfg.java index 02c231d47..4cd60e842 100644 --- a/src/main/java/com/nis/domain/configuration/AreaIpCfg.java +++ b/src/main/java/com/nis/domain/configuration/AreaIpCfg.java @@ -33,7 +33,7 @@ public class AreaIpCfg extends BaseIpCfg { super.initDefaultValue(); this.protocolId=0; this.isAreaEffective=0; - this.areaEffectiveIds="NULL"; + this.areaEffectiveIds=null; } } diff --git a/src/main/java/com/nis/domain/configuration/BaseCfg.java b/src/main/java/com/nis/domain/configuration/BaseCfg.java index 3c8600302..c99dd433c 100644 --- a/src/main/java/com/nis/domain/configuration/BaseCfg.java +++ b/src/main/java/com/nis/domain/configuration/BaseCfg.java @@ -52,7 +52,7 @@ public class BaseCfg extends BaseEntity { /** * 创建人员 */ - protected Integer creatorId; + protected Long creatorId; /** * 配置时间 */ @@ -60,7 +60,7 @@ public class BaseCfg extends BaseEntity { /** * 修改人员 */ - protected Integer editorId; + protected Long editorId; /** * 修改时间 */ @@ -68,7 +68,7 @@ public class BaseCfg extends BaseEntity { /** * 审核人员 */ - protected Integer auditorId; + protected Long auditorId; /** * 审核时间 */ @@ -169,13 +169,13 @@ public class BaseCfg extends BaseEntity { * @return creatorId */ - public Integer getCreatorId() { + public Long getCreatorId() { return creatorId; } /** * @param creatorId the creatorId to set */ - public void setCreatorId(Integer creatorId) { + public void setCreatorId(Long creatorId) { this.creatorId = creatorId; } /** @@ -197,13 +197,13 @@ public class BaseCfg extends BaseEntity { * @return editorId */ - public Integer getEditorId() { + public Long getEditorId() { return editorId; } /** * @param editorId the editorId to set */ - public void setEditorId(Integer editorId) { + public void setEditorId(Long editorId) { this.editorId = editorId; } /** @@ -225,13 +225,13 @@ public class BaseCfg extends BaseEntity { * @return auditorId */ - public Integer getAuditorId() { + public Long getAuditorId() { return auditorId; } /** * @param auditorId the auditorId to set */ - public void setAuditorId(Integer auditorId) { + public void setAuditorId(Long auditorId) { this.auditorId = auditorId; } /** diff --git a/src/main/java/com/nis/domain/configuration/BaseIpCfg.java b/src/main/java/com/nis/domain/configuration/BaseIpCfg.java index 8574cbb20..32a52ffc8 100644 --- a/src/main/java/com/nis/domain/configuration/BaseIpCfg.java +++ b/src/main/java/com/nis/domain/configuration/BaseIpCfg.java @@ -74,7 +74,7 @@ public class BaseIpCfg extends BaseCfg { /** * 编译id */ - protected Integer compileId ; + protected Long compileId ; /** * ipType * @return ipType @@ -248,13 +248,13 @@ public class BaseIpCfg extends BaseCfg { * @return compileId */ - public Integer getCompileId() { + public Long getCompileId() { return compileId; } /** * @param compileId the compileId to set */ - public void setCompileId(Integer compileId) { + public void setCompileId(Long compileId) { this.compileId = compileId; } @Override