zj
2025-01-06 b678cfe32e656219f9784bac92e47344e610f028
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.gear.finance.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.gear.finance.mapper.FinanceCouponUserRecordMapper;
import com.gear.finance.domain.FinanceCouponUserRecord;
import com.gear.finance.service.IFinanceCouponUserRecordService;
 
/**
 * 券领取记录Service业务层处理
 *
 * @author czx
 * @date 2023-11-16
 */
@Service
public class FinanceCouponUserRecordServiceImpl extends ServiceImpl<FinanceCouponUserRecordMapper, FinanceCouponUserRecord> implements IFinanceCouponUserRecordService {
    @Autowired
    private FinanceCouponUserRecordMapper financeCouponUserRecordMapper;
}