| | |
| | | package cc.mrbird.febs.server.hr.service; |
| | | |
| | | import cc.mrbird.febs.common.core.entity.system.DicItem; |
| | | import cc.mrbird.febs.common.core.exception.FebsException; |
| | | import cc.mrbird.febs.server.hr.entity.*; |
| | | |
| | | import cc.mrbird.febs.common.core.entity.QueryRequest; |
| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.FileNotFoundException; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @return IPage<EmpBaseinfo> |
| | | */ |
| | | IPage<EmpBaseInfo> findEmpBaseInfos(QueryRequest request, EmpBaseInfo empBaseInfo); |
| | | |
| | | /** |
| | | *智搜 查询(分页) |
| | | * |
| | | * @param request QueryRequest |
| | | * @param empBaseInfo empBaseinfo |
| | | * @return IPage<EmpBaseinfo> |
| | | */ |
| | | IPage<EmpBaseInfo> findZsEmpBaseInfos(QueryRequest request, EmpBaseInfo empBaseInfo); |
| | | |
| | | |
| | | /** |
| | | * 查询(所有) |
| | |
| | | * 导入员工 |
| | | * @param listObject |
| | | */ |
| | | void importEmpBaseInfo(List<List<Object>> listObject); |
| | | void importEmpBaseInfo(List<List<Object>> listObject,List<String> returnList,List<DicItem> dicItems) throws FebsException; |
| | | |
| | | void getImage(String empId, HttpServletResponse response) throws Exception; |
| | | |
| | | /** |
| | | * |
| | | * 增加在职员工信息 |
| | | * |
| | | * date 2021-03-03 00:06 |
| | | * @author: luoyibo |
| | | * @param empBaseInfo 在职员工信息 |
| | | * @return cc.mrbird.febs.server.hr.entity.EmpBaseInfo |
| | | */ |
| | | EmpBaseInfo addInEmpBaseInfo(EmpBaseInfo empBaseInfo); |
| | | |
| | | Long getEmpIdByEmpNumb(String empNumb); |
| | | |
| | | EmpBaseInfo getEmpBaseInfoByEmpNumb(String empNumb); |
| | | |
| | | void exportEmpAll(HttpServletResponse response,EmpBaseInfo empBaseinfo) throws IOException; |
| | | } |