2024-03-05 19:15:53 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
type Districts struct {
|
2024-04-28 18:39:43 +00:00
|
|
|
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"`
|
2024-03-05 19:15:53 +00:00
|
|
|
}
|