package com.ruoyi.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.utils.MapUtils; import com.ruoyi.common.utils.StringUtils; import com.ruoyi.domain.ZfPet; import com.ruoyi.mapper.ZfPetMapper; import com.ruoyi.service.ZfPetService; import lombok.extern.slf4j.Slf4j; import org.apache.poi.util.StringUtil; import org.springframework.stereotype.Service; import java.util.HashMap; import java.util.List; /** *

* 魅宠基本信息 服务实现类 *

* * @author ojq * @since 2023-03-12 */ @Service @Slf4j public class ZfPetServiceImpl extends ServiceImpl implements ZfPetService { @Override public AjaxResult selectPetList(ZfPet zfPet, Integer pageNum, Integer pageSize) { LambdaQueryWrapper lqw = buildCondition(zfPet); Page ZfPetPage = new Page<>(pageNum,pageSize); Page pageResult = page(ZfPetPage, lqw); HashMap data = MapUtils.getResult(pageResult); return AjaxResult.success(data); } @Override public List selectByCondition(ZfPet zfPet) { LambdaQueryWrapper lambdaQueryWrapper = buildCondition(zfPet); List list = list(lambdaQueryWrapper); log.info("返回的数据为:{}",list); return list; } private LambdaQueryWrapper buildCondition(ZfPet zfPet) { LambdaQueryWrapper lqw = new LambdaQueryWrapper<>(); lqw.like(StringUtils.isNotEmpty(zfPet.getIdNum()),ZfPet::getIdNum,zfPet.getIdNum()); lqw.like(StringUtils.isNotEmpty(zfPet.getSecurityCode()),ZfPet::getSecurityCode,zfPet.getSecurityCode()); lqw.like(StringUtils.isNotEmpty(zfPet.getType()),ZfPet::getType,zfPet.getType()); lqw.like(StringUtils.isNotEmpty(zfPet.getName()),ZfPet::getName,zfPet.getName()); lqw.like(zfPet.getBirth()!=null,ZfPet::getBirth,zfPet.getBirth()); lqw.like(zfPet.getSex()!=null,ZfPet::getSex,zfPet.getSex()); lqw.like(StringUtils.isNotEmpty(zfPet.getColor()),ZfPet::getColor,zfPet.getColor()); lqw.like(StringUtils.isNotEmpty(zfPet.getProperties()),ZfPet::getProperties,zfPet.getProperties()); lqw.like(StringUtils.isNotEmpty(zfPet.getEatHabit()),ZfPet::getEatHabit,zfPet.getEatHabit()); lqw.like(StringUtils.isNotEmpty(zfPet.getLifeHabit()),ZfPet::getLifeHabit,zfPet.getLifeHabit()); lqw.like(StringUtils.isNotEmpty(zfPet.getAddress()),ZfPet::getAddress,zfPet.getAddress()); lqw.like(StringUtils.isNotEmpty(zfPet.getDialect()),ZfPet::getDialect,zfPet.getDialect()); return lqw; } }