无关风月
2025-03-21 6903c41af2520b23809ca90e9a211e738de2c224
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.study.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.study.domain.TUserPresentRecord;
import com.ruoyi.study.mapper.TUserPresentRecordMapper;
import com.ruoyi.study.service.ITUserPresentRecordService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 用户赠送积分记录表 服务实现类
 * </p>
 *
 * @author 无关风月
 * @since 2024-04-26
 */
@Service
public class TUserPresentRecordServiceImpl extends ServiceImpl<TUserPresentRecordMapper, TUserPresentRecord> implements ITUserPresentRecordService {
 
 
}