- POST /v1/in/push/log 엔드포인트 추가 - PushSendLogRepository (페이징, 필터링: message_code, device_id, status, 날짜범위) - PushService.GetLogAsync 구현 - 누락된 Push DTO 파일 포함 (PushSendRequestDto, PushSendResponseDto, PushSendTagRequestDto)
9 lines
242 B
C#
9 lines
242 B
C#
namespace SPMS.Application.DTOs.Push;
|
|
|
|
public class PushSendResponseDto
|
|
{
|
|
public string RequestId { get; set; } = string.Empty;
|
|
public string SendType { get; set; } = string.Empty;
|
|
public string Status { get; set; } = "queued";
|
|
}
|