PunchInStatsMonthMapper.java 350 B

1234567891011121314
  1. package com.punchsettle.server.atomic.mapper;
  2. import com.punchsettle.server.atomic.entity.PunchInStatsMonth;
  3. import tk.mybatis.mapper.common.Mapper;
  4. /**
  5. * @author tyuio
  6. * @version 1.0.0
  7. * @description 打卡任务月数据统计 Mapper
  8. * @date 2025/04/08 10:30
  9. */
  10. public interface PunchInStatsMonthMapper extends Mapper<PunchInStatsMonth> {
  11. }