| | |
| | | * @date 2023-01-10 |
| | | */ |
| | | @Service |
| | | public class ServiceReimbursementSharedServiceImpl extends ServiceImpl<ServiceReimbursementSharedMapper, ServiceReimbursementShared> implements IServiceReimbursementSharedService |
| | | { |
| | | public class ServiceReimbursementSharedServiceImpl extends ServiceImpl<ServiceReimbursementSharedMapper, ServiceReimbursementShared> implements IServiceReimbursementSharedService { |
| | | |
| | | |
| | | @Autowired |
| | |
| | | if (StringUtils.isNotBlank(serviceReimbursementShared.getFileid())){ |
| | | wrappers.eq(ServiceReimbursementShared::getFileid ,serviceReimbursementShared.getFileid()); |
| | | } |
| | | |
| | | return this.list(wrappers); |
| | | } |
| | | |
| | | @Override |
| | | public List<ServiceReimbursementShared> getRemShareInfoByRemId(Long remeid) |
| | | { |
| | | public List<ServiceReimbursementShared> queryReShareList() { |
| | | LambdaQueryWrapper<ServiceReimbursementShared> wrappers = Wrappers.lambdaQuery(); |
| | | wrappers.eq(ServiceReimbursementShared::getDelFlag, 0); |
| | | wrappers.isNotNull(ServiceReimbursementShared::getCxrjyj); |
| | | |
| | | return this.list(wrappers); |
| | | } |
| | | |
| | | @Override |
| | | public List<ServiceReimbursementShared> getRemShareInfoByRemId(Long remeid) { |
| | | return serviceReimbursementSharedMapper.getRemShareInfoByRemId(remeid); |
| | | // return null; |
| | | } |
| | | |
| | | @Override |
| | | public Boolean delResharedInfoById(Long id) { |
| | | |
| | | return serviceReimbursementSharedMapper.delResharedInfoById(id); |
| | | } |
| | | |
| | | } |