init project

This commit is contained in:
2025-03-19 13:47:29 +07:00
parent 80d1f95f66
commit f6a2cf3a5b
22 changed files with 677 additions and 24 deletions

View File

@@ -0,0 +1,11 @@
package patient
type Patient struct {
ID string `bson:"_id"`
NoRM string `bson:"norm"`
Name string `bson:"name"`
Telecom string `bson:"telecom"`
Gender string `bson:"gender"`
BirthDate string `bson:"birthDate"`
Address string `bson:"address"`
}