| | |
| | | import com.ruoyi.project.domain.*; |
| | | import com.ruoyi.project.domain.vo.*; |
| | | import com.ruoyi.project.mapper.ServiceFundMapper; |
| | | import com.ruoyi.project.mapper.SpStatBonusMapper; |
| | | import lombok.extern.flogger.Flogger; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | |
| | | |
| | | @Autowired |
| | | ServiceFundMapper serviceFundMapper; |
| | | |
| | | @Autowired |
| | | SpStatBonusMapper spStatBonusMapper; |
| | | |
| | | |
| | | /** |
| | |
| | | } |
| | | if (serviceFunddetail.getDel_flag() != null) { |
| | | wrappers.eq(ServiceFunddetail::getDel_flag, serviceFunddetail.getDel_flag()); |
| | | } |
| | | if (serviceFunddetail.getDeptId() != null) { |
| | | wrappers.eq(ServiceFunddetail::getDeptId, serviceFunddetail.getDeptId()); |
| | | } |
| | | if (serviceFunddetail.getDeptName() != null) { |
| | | wrappers.eq(ServiceFunddetail::getDeptName, serviceFunddetail.getDeptName()); |
| | | } |
| | | return this.list(wrappers); |
| | | } |
| | |
| | | return map; |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public List<SpStatBonus> getListBySpStatBonus(SpStatBonusReq spStatBonusReq) { |
| | | return spStatBonusMapper.getListBySpStatBonus(spStatBonusReq.getPabegtime(), spStatBonusReq.getPaendtime(), spStatBonusReq.getPadeptno(), spStatBonusReq.getPausername(), spStatBonusReq.getPabonustype()); |
| | | } |
| | | } |