| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public int delUserDepardLimsId(Integer id) { |
| | | return baseMapper.update(null, Wrappers.<User>lambdaUpdate().eq(User::getId, id).set(User::getDepartLimsId, null).set(User::getUpdateTime, LocalDateTime.now()).set(User::getUpdateBy, SecurityUtils.getUsername())); |
| | | } |
| | | |
| | | @Override |
| | | public List<User> selectUserListByPerformance(Boolean isTestUser) { |
| | | return baseMapper.selectUserListByPerformance(isTestUser); |
| | | } |
| | | } |
| | | |