10 lines
339 B
Go
10 lines
339 B
Go
package entity
|
|
|
|
type Provinces struct {
|
|
ID uint `json:"id" gorm:"primaryKey;type:int4;autoIncrement"`
|
|
ProvName string `json:"prov_name" gorm:"type:varchar"`
|
|
LocationId int `json:"location_id" gorm:"type:int4"`
|
|
Status int `json:"status" gorm:"type:int4"`
|
|
Timezone string `json:"timezone" gorm:"type:varchar"`
|
|
}
|