StatPiTaskWeekMapper.java 434 B

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