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 {
|
|
|
}
|