| | |
| | | import com.ruoyi.project.service.IServiceReimbursementdetailSharedService; |
| | | import com.ruoyi.project.service.IServiceReimbursementpayeeSharedService; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.lang3.ObjectUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | |
| | | @Override |
| | | public List<ServiceReimbursement> queryList(ServiceReimbursement serviceReimbursement) { |
| | | LambdaQueryWrapper<ServiceReimbursement> wrappers = Wrappers.lambdaQuery(); |
| | | if (ObjectUtils.isNotEmpty(serviceReimbursement.getId())) { |
| | | wrappers.eq(ServiceReimbursement::getId, serviceReimbursement.getId()); |
| | | } |
| | | if (StringUtils.isNotBlank(serviceReimbursement.getCreateBy())) { |
| | | wrappers.eq(ServiceReimbursement::getCreateBy, serviceReimbursement.getCreateBy()); |
| | | } |