| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- package jnpf.permission.service.impl;
- import jnpf.base.service.SuperServiceImpl;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import jnpf.permission.entity.SocialsUserEntity;
- import jnpf.permission.mapper.SocialsUserMapper;
- import jnpf.permission.service.SocialsUserService;
- import org.springframework.stereotype.Service;
- import java.util.List;
- /**
- * 流程设计
- *
- * @author JNPF开发平台组
- * @version V3.4.2
- * @copyright 引迈信息技术有限公司
- * @date 2022/7/14 9:33:16
- */
- @Service
- public class SocialsUserServiceImpl extends SuperServiceImpl<SocialsUserMapper, SocialsUserEntity> implements SocialsUserService {
- @Override
- public List<SocialsUserEntity> getListByUserId(String userId) {
- QueryWrapper<SocialsUserEntity> queryWrapper = new QueryWrapper<>();
- queryWrapper.lambda().eq(SocialsUserEntity::getUserId,userId);
- return this.list(queryWrapper);
- }
- @Override
- public List<SocialsUserEntity> getUserIfnoBySocialIdAndType(String socialId, String socialType) {
- QueryWrapper<SocialsUserEntity> queryWrapper = new QueryWrapper<>();
- queryWrapper.lambda().eq(SocialsUserEntity::getSocialId,socialId);
- queryWrapper.lambda().eq(SocialsUserEntity::getSocialType,socialType);
- return this.list(queryWrapper);
- }
- @Override
- public List<SocialsUserEntity> getListByUserIdAndSource(String userId, String socialType) {
- QueryWrapper<SocialsUserEntity> queryWrapper = new QueryWrapper<>();
- queryWrapper.lambda().eq(SocialsUserEntity::getUserId,userId);
- queryWrapper.lambda().eq(SocialsUserEntity::getSocialType,socialType);
- return this.list(queryWrapper);
- }
- @Override
- public SocialsUserEntity getInfoBySocialId(String socialId,String socialType){
- QueryWrapper<SocialsUserEntity> queryWrapper = new QueryWrapper<>();
- queryWrapper.lambda().eq(SocialsUserEntity::getSocialId,socialId);
- queryWrapper.lambda().eq(SocialsUserEntity::getSocialType,socialType);
- return this.getOne(queryWrapper);
- }
- }
|