PointUserSignLogServiceImpl.java 656 B

123456789101112131415161718192021
  1. package com.ylx.point.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.ylx.point.domain.PointUserSignLog;
  4. import com.ylx.point.mapper.PointUserSignLogMapper;
  5. import com.ylx.point.service.IPointUserSignLogService;
  6. import org.springframework.stereotype.Service;
  7. import javax.annotation.Resource;
  8. /**
  9. * 用户签到记录Service业务层处理
  10. *
  11. * @author wzj
  12. * @date 2026-03-25
  13. */
  14. @Service
  15. public class PointUserSignLogServiceImpl extends ServiceImpl<PointUserSignLogMapper, PointUserSignLog> implements IPointUserSignLogService {
  16. @Resource
  17. private PointUserSignLogMapper pointUserSignLogMapper;
  18. }