-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenhvien.xml
More file actions
41 lines (37 loc) · 1.41 KB
/
benhvien.xml
File metadata and controls
41 lines (37 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<hospital
xmlns="http://example.com/hospital"
xmlns:pat="http://example.com/patient"
xmlns:doc="http://example.com/doctor"
xmlns:app="http://example.com/appointment">
<app:appointment id="A001" date="2025-03-05" status="Đã khám">
<pat:patient id="P001">
<pat:name>Nguyễn Văn Chiến</pat:name>
<pat:dob>1990-07-15</pat:dob>
</pat:patient>
<doc:doctor id="D001">
<doc:name>Trần Thị Bích</doc:name>
<doc:specialty>Nội khoa</doc:specialty>
</doc:doctor>
</app:appointment>
<app:appointment id="A002" date="2025-03-06" status="Chưa khám">
<pat:patient id="P002">
<pat:name>Lê Văn Cương</pat:name>
<pat:dob>1985-01-20</pat:dob>
</pat:patient>
<doc:doctor id="D002">
<doc:name>Phạm Duy Dũng</doc:name>
<doc:specialty>Ngoại khoa</doc:specialty>
</doc:doctor>
</app:appointment>
<app:appointment id="A003" date="2025-03-07" status="Chưa khám">
<pat:patient id="P003">
<pat:name>Hoàng Thị Nguyệt</pat:name>
<pat:dob>2000-09-10</pat:dob>
</pat:patient>
<doc:doctor id="D003">
<doc:name>Ngô Quang Phú</doc:name>
<doc:specialty>Da liễu</doc:specialty>
</doc:doctor>
</app:appointment>
</hospital>