| | |
| | | |
| | | return this.getOne(queryWrapper); |
| | | } |
| | | /** |
| | | * |
| | | * 关闭员工档案 |
| | | * |
| | | * date 2021-02-18 12:54 |
| | | * @author: luoyibo |
| | | * @param ids 待关闭档案员工 Id |
| | | * @param dimissionType 离职类型 |
| | | * @param dimissionDate 离职日期 |
| | | * @param remark 备注 |
| | | * @return boolean |
| | | */ |
| | | @Override |
| | | public boolean closeEmpArchives(String ids, String dimissionType, Date dimissionDate, String remark) { |
| | | String[] str = ids.split(","); |
| | | List<String> list = new ArrayList<>(Arrays.asList(str)); |
| | | return empBaseInfoMapper.closeEmpArchives(list, dimissionType, dimissionDate, remark, operatorId)>0; |
| | | } |
| | | } |