| | |
| | | |
| | | |
| | | import cc.mrbird.febs.common.core.entity.QueryRequest; |
| | | import cc.mrbird.febs.common.core.exception.FebsException; |
| | | import cc.mrbird.febs.server.hr.entity.EmpAccessory; |
| | | import cc.mrbird.febs.server.hr.vo.EmpAccessoryVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import javax.validation.constraints.NotNull; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | |
| | | /** |
| | | * 新增 |
| | | * |
| | | * @param empAccessory empAccessory |
| | | */ |
| | | void createEmpAccessory(EmpAccessory empAccessory); |
| | | void createEmpAccessory(Long labelid, MultipartFile file,Long empId) throws FebsException, IOException; |
| | | |
| | | /** |
| | | * 修改 |
| | |
| | | /** |
| | | * 删除 |
| | | * |
| | | * @param empAccessory empAccessory |
| | | */ |
| | | void deleteEmpAccessory(EmpAccessory empAccessory); |
| | | void deleteEmpAccessory(String accessoryids); |
| | | |
| | | void download(String accessoryids, HttpServletRequest request, HttpServletResponse response); |
| | | |
| | | void mvFiles(String accessoryids,Long labelid,Long empId); |
| | | |
| | | void singledownload(String empIds, Long labelid, HttpServletRequest request, HttpServletResponse response) throws Exception; |
| | | |
| | | |
| | | Integer getLabelCount(Long labelId); |
| | | |
| | | |
| | | void autoInstall(String fileids); |
| | | } |