8 lines
216 B
Go
8 lines
216 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
type Districts struct {
|
||
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
||
|
|
DisName string `json:"dis_name" gorm:"type:varchar"`
|
||
|
|
CityId int `json:"city_id" gorm:"type:int4"`
|
||
|
|
}
|