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