|
@@ -0,0 +1,103 @@
|
|
|
+package com.zhongzheng.modules.user.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.user.bo.UserLoginKeyAddBo;
|
|
|
+import com.zhongzheng.modules.user.bo.UserLoginKeyEditBo;
|
|
|
+import com.zhongzheng.modules.user.bo.UserLoginKeyQueryBo;
|
|
|
+import com.zhongzheng.modules.user.domain.UserLoginKey;
|
|
|
+import com.zhongzheng.modules.user.mapper.UserLoginKeyMapper;
|
|
|
+import com.zhongzheng.modules.user.service.IUserLoginKeyService;
|
|
|
+import com.zhongzheng.modules.user.vo.UserLoginKeyVo;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.github.pagehelper.Page;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 用户登录KEYService业务层处理
|
|
|
+ *
|
|
|
+ * @author hjl
|
|
|
+ * @date 2023-06-14
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class UserLoginKeyServiceImpl extends ServiceImpl<UserLoginKeyMapper, UserLoginKey> implements IUserLoginKeyService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public UserLoginKeyVo queryById(Long id){
|
|
|
+ UserLoginKey db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, UserLoginKeyVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<UserLoginKeyVo> queryList(UserLoginKeyQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<UserLoginKey> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getUserId() != null, UserLoginKey::getUserId, bo.getUserId());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getUserKey()), UserLoginKey::getUserKey, bo.getUserKey());
|
|
|
+ lqw.eq(bo.getStatus() != null, UserLoginKey::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getIp()), UserLoginKey::getIp, bo.getIp());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getBrowser()), UserLoginKey::getBrowser, bo.getBrowser());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<UserLoginKeyVo> entity2Vo(Collection<UserLoginKey> collection) {
|
|
|
+ List<UserLoginKeyVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, UserLoginKeyVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<UserLoginKey> page = (Page<UserLoginKey>)collection;
|
|
|
+ Page<UserLoginKeyVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(UserLoginKeyAddBo bo) {
|
|
|
+ UserLoginKey add = BeanUtil.toBean(bo, UserLoginKey.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(UserLoginKeyEditBo bo) {
|
|
|
+ UserLoginKey update = BeanUtil.toBean(bo, UserLoginKey.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(UserLoginKey entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|