12 lines
277 B
Go
12 lines
277 B
Go
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"`
|
|
}
|