- POST /v1/in/stats/daily: 기간별 일별 통계 - POST /v1/in/stats/summary: 대시보드 요약 통계 - POST /v1/in/stats/message: 메시지별 발송 통계 - POST /v1/in/stats/hourly: 시간대별 발송 추이 - POST /v1/in/stats/device: 디바이스 분포 통계 - IDailyStatRepository, DailyStatRepository 신규 - IPushSendLogRepository 통계 메서드 확장 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
531 B
C#
13 lines
531 B
C#
using SPMS.Application.DTOs.Stats;
|
|
|
|
namespace SPMS.Application.Interfaces;
|
|
|
|
public interface IStatsService
|
|
{
|
|
Task<DailyStatResponseDto> GetDailyAsync(long serviceId, DailyStatRequestDto request);
|
|
Task<SummaryStatResponseDto> GetSummaryAsync(long serviceId);
|
|
Task<MessageStatResponseDto> GetMessageStatAsync(long serviceId, MessageStatRequestDto request);
|
|
Task<HourlyStatResponseDto> GetHourlyAsync(long serviceId, HourlyStatRequestDto request);
|
|
Task<DeviceStatResponseDto> GetDeviceStatAsync(long serviceId);
|
|
}
|