weaver-hrm-organization/src/com/engine/organization/service/ExportCommonService.java

23 lines
441 B
Java
Raw Normal View History

2022-06-28 19:04:14 +08:00
package com.engine.organization.service;
import com.engine.organization.entity.hrmresource.param.HrmResourceSearchParam;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
2022-06-29 15:21:36 +08:00
import java.util.List;
2022-06-28 19:04:14 +08:00
/**
* @Author weaver_cl
* @Description:
* @Date 2022/6/28
* @Version V1.0
**/
public interface ExportCommonService {
/**
* 人员导出
2022-06-29 15:21:36 +08:00
* @param ids
2022-06-28 19:04:14 +08:00
* @return
*/
2022-06-29 15:21:36 +08:00
XSSFWorkbook resourceExport(List<Long> ids);
2022-06-28 19:04:14 +08:00
}