You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
437 B
15 lines
437 B
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"` |
|
}
|
|
|