| | |
| | | |
| | | |
| | | /** |
| | | * 查询费用申请主列表 |
| | | * 查询费用申请主列表(包含删除的) |
| | | * |
| | | * @param serviceFund 费用申请主 |
| | | * @return 费用申请主 |
| | |
| | | return this.list(wrappers); |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public List<ServiceFund> queryInfoById(ServiceFund serviceFund) { |
| | | LambdaQueryWrapper<ServiceFund> wrappers = Wrappers.lambdaQuery(); |
| | | if (serviceFund.getId() != null) { |
| | | wrappers.eq(ServiceFund::getId, serviceFund.getId()); |
| | | } |
| | | |
| | | wrappers.eq(ServiceFund::getDel_flag, "0"); |
| | | return this.list(wrappers); |
| | | } |
| | | |
| | | @Override |
| | | public List<ServiceFund> getInfoByInfoId(Long infoid) { |
| | | return serviceFundMapper.getInfoByInfoId(infoid); |