From 68fd566d21b3efc3a670a5295289b1801f5a4155 Mon Sep 17 00:00:00 2001 From: ludc <ludc@vci-tech.com> Date: 星期四, 16 一月 2025 18:18:55 +0800 Subject: [PATCH] 流程部署接口上传 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java | 37 +++++++++++++++++++++++++++++++------ 1 files changed, 31 insertions(+), 6 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java index 1967c05..e5c2e98 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java @@ -1,12 +1,10 @@ package com.vci.web.service; import com.vci.corba.common.PLException; -import com.vci.dto.*; +import com.vci.corba.framework.data.PvolumeInfo; +import com.vci.dto.OsPvolumeDTO; import com.vci.starter.web.pagemodel.BaseResult; -import org.springframework.web.multipart.MultipartFile; -import javax.servlet.http.HttpServletResponse; -import java.io.IOException; import java.util.List; /** @@ -17,8 +15,8 @@ public interface OsPvolumesServiceI { /** * 鍒嗛〉鏌ヨ鍗� - * @param pageSize 椤垫暟 - * @param pageIndex 绗嚑椤� + * @param pageSize 绗嚑椤� + * @param pageIndex 椤垫暟 * @return 鍒嗛〉鏁版嵁 */ BaseResult getPvolumesPage(short pageSize, short pageIndex) throws PLException; @@ -34,4 +32,31 @@ * @return 淇敼缁撴灉 */ BaseResult updatePvolume(OsPvolumeDTO dto) throws PLException; + /** + * 鍒犻櫎鍗� + * @param ids 涓婚敭闆嗗悎 + * @return 鍒犻櫎缁撴灉 + */ + BaseResult deletePvolume(String ids) throws PLException; + /** + * 鏂囦欢鏌滃鍑� + * @param exportFileName 瀵煎嚭鐨勬枃浠跺悕 + * @param pvolumeIds 瀵煎嚭閫変腑鐨勫嵎id + * @return + * @throws PLException + */ + String exportPvolumes(String exportFileName,String pvolumeIds) throws PLException; + /** + * 鏍规嵁鍗穒d鏌ヨ鍗� + * @param ids + * @return + */ + List<PvolumeInfo> getPvolumeInfoByIds(List<String> ids) throws PLException; + /** + * 涓烘枃浠舵煖鍒嗛厤鎴愬憳 + * @param pvolumId + * @param userIds + * @return + */ + boolean savePvolumeUser(String pvolumId ,List<String> userIds) throws PLException; } -- Gitblit v1.9.3