From c65c0b31e6dfd01db744a450dda3816f65eebbc1 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期四, 05 十二月 2024 11:41:10 +0800 Subject: [PATCH] 1、修改使用当前用户的类型查询用户接口,可以传入用户类型。 2、增加根据用户主键获取关联的部门接口。 3、增加查询授权结果接口。 4、增加查询业务对象接口。 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsPvolumesServiceI.java | 13 ++++--------- 1 files changed, 4 insertions(+), 9 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 3220e17..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,14 +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.ArrayList; -import java.util.Arrays; import java.util.List; /** @@ -41,7 +37,7 @@ * @param ids 涓婚敭闆嗗悎 * @return 鍒犻櫎缁撴灉 */ - BaseResult deletePvolume(String[] ids) throws PLException; + BaseResult deletePvolume(String ids) throws PLException; /** * 鏂囦欢鏌滃鍑� * @param exportFileName 瀵煎嚭鐨勬枃浠跺悕 @@ -62,6 +58,5 @@ * @param userIds * @return */ - boolean savePvolumeUser(String pvolumId ,String[] userIds) throws PLException; - BaseResult deletePvolume(String ids) throws PLException; + boolean savePvolumeUser(String pvolumId ,List<String> userIds) throws PLException; } -- Gitblit v1.9.3