| 123456789101112131415161718192021 |
- package com.ylx.point.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ylx.point.domain.PointUserSignLog;
- import com.ylx.point.mapper.PointUserSignLogMapper;
- import com.ylx.point.service.IPointUserSignLogService;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- /**
- * 用户签到记录Service业务层处理
- *
- * @author wzj
- * @date 2026-03-25
- */
- @Service
- public class PointUserSignLogServiceImpl extends ServiceImpl<PointUserSignLogMapper, PointUserSignLog> implements IPointUserSignLogService {
- @Resource
- private PointUserSignLogMapper pointUserSignLogMapper;
- }
|