niki/entity/address.go

20 lines
310 B
Go

package entity
type Address struct {
ID uint
PostalCode string
Address string
Name string
Lat float64
Lon float64
CityID uint
ProvinceID uint
BenefactorID uint
}
type AddressAggregated struct {
Address Address
Province Province
City City
}