package manage type ThirdCountry struct { Id uint `gorm:"column:id" json:"id"` CountryName string `gorm:"column:country_name" json:"country_name"` } func (c *ThirdCountry) TableName() string { return "jintong_ecs_country" }