Feature #112
Updated by 關山 和丈 10 months ago
export interface Patient {
id: string;
receptionId: string;
name: string;
deliveryStatus: "配送完了" | "未配送";
medicalInstitution: string;
packaging: "有" | "無";
printMethod: string;
createdDate: string;
}
export interface PatientTableProps {
patients: Patient[];
}