| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.sayu.mapper;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- import java.util.Map;
- @Mapper
- public interface DashboardMapper {
- int countTotalUsers();
- int countTodayActiveUsers();
- int countUsersByType(@Param("identityType") String identityType);
- int countActiveRecruits();
- int countAvailableWorkers();
- int countTodayCallLogs();
- int countTodaySms();
- int countTotalCallLogs();
- int countTotalApplies();
- int countMatchedApplies();
- List<Map<String, Object>> countGrowerByArea();
- List<Map<String, Object>> countBuyerBySource();
- }
|