From 3a30f17591676a20637aa8c16c1cf62e730bb56b Mon Sep 17 00:00:00 2001 From: anhc <3442943606@qq.com> Date: Thu, 7 Jul 2022 16:20:49 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E8=A2=ABmerge=E6=8E=89?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pal/datamigration/DataMigrationController.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/DataMigrationController.java b/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/DataMigrationController.java index 8046f361..df6a6d4d 100644 --- a/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/DataMigrationController.java +++ b/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/DataMigrationController.java @@ -25,9 +25,17 @@ public class DataMigrationController { return new DataMigrationWeb(uc).dataMigrate(wsId,groupValue,fileValue,fileName); } + /** + * 流程属性批量导入 + * @param uc + * @param wsId + * @param groupValue + * @param fileValue + * @return + */ @Mapping("com.actionsoft.apps.coe.pal.datamigration_process_attribute_import") - public String processAttributeImport(UserContext uc, String wsId,String groupValue,String fileValue,String fileName){ - return new DataMigrationWeb(uc).processAttributeImport(wsId,groupValue,fileValue,fileName); + public String processAttributeImport(UserContext uc, String wsId,String groupValue,String fileValue){ + return new DataMigrationWeb(uc).processAttributeImport(wsId,groupValue,fileValue); } @Mapping("com.actionsoft.apps.coe.pal.datamigration_IT_attribute_import")