export interface TicketListItemDto {
id: string;
ordinanceType: string;
patientName: string;
stage: string;
tourCount: number;
errorCount: number;
approvalStatus: string;
isOverdue: boolean;
createdAt: Date;
updatedAt: Date;
}