Project

General

Profile

Feature #112

Updated by 關山 和丈 6 months ago

``` 
 types/patient.ts 
 export interface Patient { 
   id: string; 
   receptionId: string; 
   name: string; 
   deliveryStatus: "配送完了" | "未配送"; 
   medicalInstitution: string; 
   packaging: "有" | "無"; 
   printMethod: string; 
   createdDate: string; 
 } 

 export interface PatientTableProps { 
   patients: Patient[]; 
 } 
 ```

Back