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> countGrowerByArea(); List> countBuyerBySource(); }