| | |
| | | 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; |
| | | |
| | | /** |
| | |
| | | * @return 删除结果 |
| | | */ |
| | | BaseResult deletePvolume(String ids) throws PLException; |
| | | /** |
| | | * 文件柜导出 |
| | | * @param exportFileName 导出的文件名 |
| | | * @param pvolumeIds 导出选中的卷id |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | String exportPvolumes(String exportFileName,String pvolumeIds) throws PLException; |
| | | /** |
| | | * 根据卷id查询卷 |
| | | * @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; |
| | | } |