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.
20 lines
768 B
20 lines
768 B
package show |
|
|
|
type Shopping struct { |
|
ID int64 `json:"id,omitempty"` |
|
Name string `json:"name,omitempty"` |
|
PerformanceImage string `json:"performance_image,omitempty"` |
|
PerformanceImageP string `json:"performance_imagep,omitempty"` |
|
STime string `json:"stime,omitempty"` |
|
ETime string `json:"etime,omitempty"` |
|
Tags []*struct { |
|
TagID int64 `json:"tag_id,omitempty"` |
|
TagName string `json:"tag_name,omitempty"` |
|
} `json:"tags,omitempty"` |
|
CityName string `json:"city_name,omitempty"` |
|
URL string `json:"url,omitempty"` |
|
Subname string `json:"subname,omitempty"` |
|
Pricelt string `json:"pricelt,omitempty"` |
|
Want string `json:"want,omitempty"` |
|
Type int8 `json:"type,omitempty"` |
|
}
|
|
|