Files
template_mongopostgre/pkg/models/patient/patient.go
2025-03-19 13:47:29 +07:00

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"`
}