离职入职相关

main
zhaokai 2025-12-03 16:32:54 +08:00
parent 5b6233931f
commit f6b859b5d9
2 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,6 @@ public interface UserCorpRepository extends BaseRepository<UserCorpDO> {
List<UserCorpDO> listByUserIdAndCorpIdAndNoStatus(Long userId, Long corpinfoId, Integer status); List<UserCorpDO> listByUserIdAndCorpIdAndNoStatus(Long userId, Long corpinfoId, Integer status);
UserE executeResignation(Long id, Long corpinfoId);
UserE executeResignation(UserCorpDO userCorpDO, Long corpinfoId, Integer employmentFlag); UserE executeResignation(UserCorpDO userCorpDO, Long corpinfoId, Integer employmentFlag);
UserE executeReviewStatus(Long id, Long corpinfoId, Integer reviewStatus); UserE executeReviewStatus(Long id, Long corpinfoId, Integer reviewStatus);

View File

@ -83,5 +83,7 @@ public class UserCorpRepositoryImpl extends BaseRepositoryImpl<UserCorpMapper, U
BeanUtils.copyProperties(userCorpDO, userE); BeanUtils.copyProperties(userCorpDO, userE);
return userE; return userE;
} }
} }