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.
|
package model |
|
|
|
// ShopInfo shop info. |
|
type ShopInfo struct { |
|
ShopID int64 `json:"shopId"` |
|
VAppID string `json:"vAppId"` |
|
AppID string `json:"appId"` |
|
Name string `json:"name"` |
|
JumpURL string `json:"jumpUrl"` |
|
ShowItemsTab int `json:"showItemsTab"` |
|
}
|
|
|