8 lines
217 B
Go
8 lines
217 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
type Cities struct {
|
||
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
||
|
|
CityName string `json:"city_name" gorm:"type:varchar"`
|
||
|
|
ProvId int `json:"prov_id" gorm:"type:int4"`
|
||
|
|
}
|