| | |
| | | package cc.mrbird.febs.server.hr.service; |
| | | |
| | | import cc.mrbird.febs.common.core.exception.FebsException; |
| | | import cc.mrbird.febs.server.hr.entity.EmpResign; |
| | | |
| | | import cc.mrbird.febs.common.core.entity.QueryRequest; |
| | |
| | | * |
| | | * @param empResign empResign |
| | | */ |
| | | void createEmpResign(EmpResign empResign); |
| | | void createEmpResign(EmpResign empResign) throws FebsException; |
| | | |
| | | /** |
| | | * 修改 |
| | | * |
| | | * @param empResign empResign |
| | | */ |
| | | void updateEmpResign(EmpResign empResign); |
| | | void updateEmpResign(EmpResign empResign) throws FebsException; |
| | | |
| | | /** |
| | | * 删除 |
| | |
| | | */ |
| | | boolean momentToNormal(String ids); |
| | | |
| | | void importEmpResign(List<List<Object>> listObject); |
| | | void importEmpResign(List<List<Object>> listObject,List<String> returnList); |
| | | } |