zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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<BonusPaymentItemMapper, BonusPaymentItem> implements IBonusPaymentItemService {
 
 
 
}