go-common/app/job/openplatform/open-sug/model/item.go

16 lines
437 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
// Item ...
type Item struct {
ID int64 `json:"id"`
Name string `json:"name"`
IPRightID int `json:"ip_right_id"`
Brief string `json:"brief"`
Keywords string `json:"keywords"`
SalesCount int `json:"sales_count"`
WishCount int `json:"wish_count"`
CommentCount int `json:"comment_count"`
HeadImg string `json:"head_img"`
SugImg string `json:"sug_img"`
}