shop.go 662 B

123456789101112131415161718192021222324
  1. package model
  2. // ShopInfo shop info.
  3. type ShopInfo struct {
  4. ID int64 `json:"id"`
  5. Mid int64 `json:"mid"`
  6. Name string `json:"name"`
  7. Logo string `json:"logo"`
  8. URL string `json:"url"`
  9. Status int `json:"status"`
  10. GoodsNum int64 `json:"goods_num"`
  11. MonthSales int64 `json:"month_sales"`
  12. StatusV string `json:"status_v"`
  13. }
  14. // ShopLinkInfo shop link info.
  15. type ShopLinkInfo struct {
  16. ShopID int64 `json:"shopId"`
  17. VAppID string `json:"vAppId"`
  18. AppID string `json:"appId"`
  19. Name string `json:"name"`
  20. JumpURL string `json:"jumpUrl"`
  21. ShowItemsTab int `json:"showItemsTab"`
  22. }