| 123456789101112131415161718192021222324 |
- package com.punchsettle.server.atomic.service;
- import com.punchsettle.server.atomic.IStatPiTaskService;
- import com.punchsettle.server.atomic.entity.StatPiTaskMonth;
- import com.punchsettle.server.pojo.punchIn.PiStatsMonthQuery;
- import com.punchsettle.server.pojo.stat.StatPiTaskQuery;
- import java.util.List;
- /**
- * @author tyuio
- * @version 1.0.0
- * @date 2025/4/8 10:37
- * @description 打卡任务月数据统计 service
- */
- public interface IStatPiTaskMonthService extends IStatPiTaskService {
- /**
- * 根据条件查询打卡任务月数据统计
- * @param piStatsMonthQuery
- * @return
- */
- List<StatPiTaskMonth> queryByCondition(PiStatsMonthQuery piStatsMonthQuery);
- }
|