package com.fdkankan.sale.service.impl; import java.util.Date; import java.util.List; import java.util.WeakHashMap; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.fdkankan.sale.entity.OrderReceiving; import com.fdkankan.sale.entity.SysUser; import com.fdkankan.sale.mapper.IOrderReceivingMapper; import com.fdkankan.sale.service.IOrderReceivingService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.fdkankan.sale.service.ISysUserService; import com.fdkankan.sale.vo.response.OrderReceivingVo; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** *

* 服务实现类 *

* * @author * @since 2022-12-13 */ @Service public class OrderReceivingServiceImpl extends ServiceImpl implements IOrderReceivingService { @Autowired ISysUserService sysUserService; @Override public OrderReceiving getByRepairId(String repairId) { LambdaQueryWrapper wrapper = new LambdaQueryWrapper<>(); wrapper.eq(OrderReceiving::getRepairId,repairId); return this.getOne(wrapper); } @Override public OrderReceivingVo getVoByRepairId(String repairId) { return this.getBaseMapper().getVoByRepairId(repairId); } }