package org.jeecg.modules.bonus.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import lombok.extern.slf4j.Slf4j; import org.jeecg.modules.bonus.entity.BonusPayment; import org.jeecg.modules.bonus.entity.BonusPaymentItem; import org.jeecg.modules.bonus.mapper.BonusPaymentItemMapper; import org.jeecg.modules.bonus.mapper.BonusPaymentMapper; import org.jeecg.modules.bonus.service.IBonusPaymentItemService; import org.jeecg.modules.bonus.service.IBonusPaymentService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service @Slf4j public class BonusPaymentItemServiceImpl extends ServiceImpl implements IBonusPaymentItemService { }