| | |
| | | package com.ruoyi.project.service.impl; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Map; |
| | | |
| | | import com.ruoyi.common.utils.StringUtils; |
| | | import com.ruoyi.project.mapper.ServiceFundflowruleMapper; |
| | | import com.ruoyi.project.domain.ServiceFundflowrule; |
| | |
| | | * @date 2022-04-27 |
| | | */ |
| | | @Service |
| | | public class ServiceFundflowruleServiceImpl extends ServiceImpl<ServiceFundflowruleMapper, ServiceFundflowrule> implements IServiceFundflowruleService |
| | | { |
| | | public class ServiceFundflowruleServiceImpl extends ServiceImpl<ServiceFundflowruleMapper, ServiceFundflowrule> implements IServiceFundflowruleService { |
| | | |
| | | |
| | | /** |
| | |
| | | if (serviceFundflowrule.getFundtype() != null){ |
| | | wrappers.eq(ServiceFundflowrule::getFundtype ,serviceFundflowrule.getFundtype()); |
| | | } |
| | | if (serviceFundflowrule.getMustAudite() != null) { |
| | | wrappers.eq(ServiceFundflowrule::getMustAudite, serviceFundflowrule.getMustAudite()); |
| | | } |
| | | return this.list(wrappers); |
| | | } |
| | | |