Update interface name from PatientEntity to Patient for better clarity and consistency. Modify all related components and models to use the new interface name. Also includes minor improvements to address handling in patient forms.
16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
export interface PersonRelative {
|
|
id: number
|
|
person_id?: number
|
|
relationship_code?: string
|
|
name?: string
|
|
address?: string
|
|
village_code?: string
|
|
gender_code?: string
|
|
phoneNumber?: string
|
|
education_code?: string
|
|
occupation_name?: string
|
|
occupation_code?: string
|
|
responsible?: boolean
|
|
}
|
|
|