mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
24 lines
594 B
TypeScript
24 lines
594 B
TypeScript
|
import { IDistrict, IProvince } from "./location";
|
||
|
import { IClientContact } from "./client";
|
||
|
|
||
|
export interface IPatient {
|
||
|
uid?: string;
|
||
|
clientPatientId?: string;
|
||
|
patientId?: string;
|
||
|
firstName?: string;
|
||
|
middleName?: string;
|
||
|
lastName?: string;
|
||
|
client?: IClientContact;
|
||
|
clientUid?: String;
|
||
|
gender?: string;
|
||
|
age?: number;
|
||
|
dateOfBirth?: Date;
|
||
|
ageDobEstimated?: Boolean;
|
||
|
phoneHome?: string;
|
||
|
phoneMobile?: string;
|
||
|
consentSms?: string;
|
||
|
district?: IDistrict;
|
||
|
districtUid?: string;
|
||
|
province?: IProvince;
|
||
|
provinceUid?: string;
|
||
|
}
|