feature: Barcode/QR Cover Sheet System

This commit is contained in:
voltsrage
2026-06-27 21:50:32 +08:00
parent 5db60f46eb
commit 756cff332c
43 changed files with 8203 additions and 21 deletions
@@ -0,0 +1,19 @@
public class CoverSheet
{
public Guid Id { get; set; }
public string Code { get; set; } = null!;
public Guid? PatientId { get; set; }
public BatchType BatchType { get; set; }
public BatchTrack Track { get; set; }
public Guid? AssignToUserId { get; set; }
public Guid GeneratedByUserId { get; set; }
public bool IsUsed { get; set; }
public Guid? BatchId { get; set; }
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset? UsedAt { get; set; }
public Patient? Patient { get; set; }
public User? AssignToUser { get; set; }
public User GeneratedByUser { get; set; } = null!;
public DigitizationBatch? Batch { get; set; }
}