From 3f9899b2863604f03bde7c481353c1b4e74790cc Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期三, 28 八月 2024 16:27:04 +0800 Subject: [PATCH] 1、action分类导入功能。 2、action导出功能能 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsActionServiceI.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsActionServiceI.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsActionServiceI.java index 26e0397..07d7105 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsActionServiceI.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsActionServiceI.java @@ -3,9 +3,11 @@ import com.vci.corba.common.PLException; import com.vci.dto.PLActionClsDTO; import com.vci.dto.PLActionDTO; +import com.vci.dto.PLActionExpDTO; import com.vci.dto.PLActionQueryDTO; import com.vci.starter.web.pagemodel.BaseResult; import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletResponse; import java.io.FileNotFoundException; @@ -65,4 +67,15 @@ * @return */ void exportBeans(List<String> actionOid, HttpServletResponse response) throws PLException, IOException; + /** + * 瀵煎叆Action + * @param file 涓婁紶鐨勬枃浠� + * @return + */ + BaseResult impData(MultipartFile file) throws IOException, PLException; + /** + * 瀵煎嚭Action + * @param plActionExpDTO 瀵煎嚭灞炴�ц缃璞� + */ + void exportAction(PLActionExpDTO plActionExpDTO, HttpServletResponse response) throws PLException, IOException; } -- Gitblit v1.9.3