- POST /v1/in/push/send/bulk: CSV 대량 발송 (비동기) - POST /v1/in/push/job/status: Job 상태 조회 - POST /v1/in/push/job/cancel: Job 취소 - BulkJobStore: Redis Hash 기반 Job 상태 관리 - PushWorker: Job 진행률 추적 및 취소 체크 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
425 B
C#
14 lines
425 B
C#
namespace SPMS.Application.DTOs.Push;
|
|
|
|
public class BulkJobInfo
|
|
{
|
|
public string JobId { get; set; } = string.Empty;
|
|
public string Status { get; set; } = "queued";
|
|
public long ServiceId { get; set; }
|
|
public int TotalCount { get; set; }
|
|
public int SentCount { get; set; }
|
|
public int FailedCount { get; set; }
|
|
public DateTime? StartedAt { get; set; }
|
|
public DateTime? CompletedAt { get; set; }
|
|
}
|