package model type FeedPasture struct { Id int64 `json:"id"` PastureId int64 `json:"pasture_id"` PastureName string `json:"pasture_name"` PastureDataId int64 `json:"pasture_data_id"` } func (f *FeedPasture) TableName() string { return "feed_pasture" }