go-common/app/interface/main/app-resource/model/guide/guide.go

12 lines
213 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package guide
type Interest struct {
ID int `json:"-"`
Name string `json:"name"`
}
type InterestTM struct {
Interests []*Interest `json:"interests,omitempty"`
FeedType int `json:"feed_type"`
}