diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/dao/PALRepository.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/dao/PALRepository.java index 47636fd6..aa162e04 100755 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/dao/PALRepository.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/dao/PALRepository.java @@ -141,6 +141,8 @@ public class PALRepository extends DaoObject { paraMap.put(PALRepositoryModelImpl.FIELD_PL_EXT2, model.getExt2()); paraMap.put(PALRepositoryModelImpl.FIELD_PL_EXT3, model.getExt3()); paraMap.put(PALRepositoryModelImpl.FIELD_PL_EXT4, model.getExt4()); + paraMap.put(PALRepositoryModelImpl.FIELD_PL_EXT5, model.getExt5()); + paraMap.put(PALRepositoryModelImpl.FIELD_PL_EXT6, model.getExt6()); //三员管理 if(null != model.getSecurityLevel()){ paraMap.put(PALRepositoryModelImpl.FIELD_SECURITY_LEVEL,model.getSecurityLevel()); diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/model/impl/PALRepositoryModelImpl.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/model/impl/PALRepositoryModelImpl.java index 7e9d5d33..f095f8bd 100755 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/model/impl/PALRepositoryModelImpl.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/model/impl/PALRepositoryModelImpl.java @@ -62,6 +62,8 @@ public class PALRepositoryModelImpl extends PlatformMetaModelBean implements PAL public static final String FIELD_PL_EXT2 = "EXT2";// add by sunlh public static final String FIELD_PL_EXT3 = "EXT3";// add by sunlh public static final String FIELD_PL_EXT4 = "EXT4";// add by sunlh + public static final String FIELD_PL_EXT5 = "EXT4";// add by sunlh + public static final String FIELD_PL_EXT6 = "EXT4";// add by sunlh //文件密级 add by anhc public static final String FIELD_SECURITY_LEVEL = "SECURITYLEVEL"; // 模型转换次数 @@ -582,12 +584,12 @@ public class PALRepositoryModelImpl extends PlatformMetaModelBean implements PAL @Override public String getExt5() { - return null; + return ext5; } @Override public String getExt6() { - return null; + return ext6; } public void setExt4(String ext4) {