From 39d999758a052321584e8e94d97a13cb68477511 Mon Sep 17 00:00:00 2001 From: wangxin Date: Sat, 24 Feb 2018 15:59:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E5=AD=97=E6=AE=B5=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nis/domain/configuration/AreaIpCfg.java | 2 +- .../com/nis/domain/configuration/BaseCfg.java | 18 +++++++++--------- .../nis/domain/configuration/BaseIpCfg.java | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) 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