feature: Barcode/QR Cover Sheet System
This commit is contained in:
@@ -0,0 +1 @@
|
||||
public record BatchPdfRequest(List<Guid> CoverSheetIds);
|
||||
@@ -0,0 +1,15 @@
|
||||
public record CoverSheetResponse(
|
||||
Guid Id,
|
||||
string Code,
|
||||
string BatchType,
|
||||
string Track,
|
||||
Guid? PatientId,
|
||||
string? PatientName,
|
||||
string? PatientMrn,
|
||||
Guid? AssignToUserId,
|
||||
string? AssignToUserName,
|
||||
bool IsUsed,
|
||||
Guid? BatchId,
|
||||
DateTimeOffset CreatedAt,
|
||||
DateTimeOffset? UsedAt
|
||||
);
|
||||
@@ -0,0 +1,7 @@
|
||||
public record GenerateCoverSheetsRequest(
|
||||
int Count,
|
||||
string BatchType,
|
||||
string Track,
|
||||
Guid? PatientId,
|
||||
Guid? AssignToUserId
|
||||
);
|
||||
Reference in New Issue
Block a user