From 2788f331b2f171ef5e4972afd5564c2605fa275c Mon Sep 17 00:00:00 2001 From: yujh Date: Tue, 11 Feb 2025 14:43:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0ext5,ext6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/coe/pal/pal/repository/dao/PALRepository.java | 2 ++ .../pal/repository/model/impl/PALRepositoryModelImpl.java | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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) {