IStatPiTaskMonthService.java 699 B

123456789101112131415161718192021222324
  1. package com.punchsettle.server.atomic.service;
  2. import com.punchsettle.server.atomic.IStatPiTaskService;
  3. import com.punchsettle.server.atomic.entity.StatPiTaskMonth;
  4. import com.punchsettle.server.pojo.punchIn.PiStatsMonthQuery;
  5. import com.punchsettle.server.pojo.stat.StatPiTaskQuery;
  6. import java.util.List;
  7. /**
  8. * @author tyuio
  9. * @version 1.0.0
  10. * @date 2025/4/8 10:37
  11. * @description 打卡任务月数据统计 service
  12. */
  13. public interface IStatPiTaskMonthService extends IStatPiTaskService {
  14. /**
  15. * 根据条件查询打卡任务月数据统计
  16. * @param piStatsMonthQuery
  17. * @return
  18. */
  19. List<StatPiTaskMonth> queryByCondition(PiStatsMonthQuery piStatsMonthQuery);
  20. }