niki/entity/address.go

14 lines
221 B
Go
Raw Normal View History

package entity
type Address struct {
ID uint
PostalCode string
Address string
Lat float64
Lon float64
IsMain bool
CityID uint
ProvinceID uint
BenefactorID uint
}