智慧食堂-队列消费项目
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.
 
 
 

42 lines
1.2 KiB

  1. package md
  2. // MallGoodsListReq
  3. // Title 标题
  4. // CategoryId 类目id
  5. // SaleState 销售状态
  6. // GoodsId 销售状态
  7. // ActivityType 参加的活动类型
  8. // PageId 页数
  9. // PageSize 每页显示记录数
  10. type MallGoodsListReq struct {
  11. Title string `json:"title"`
  12. CategoryId string `json:"category_id"`
  13. GoodsCode string `json:"goods_code"`
  14. SkuCode string `json:"sku_code"`
  15. SaleState string `json:"sale_state"`
  16. MerchantId string `json:"merchant_id"`
  17. PageId string `json:"pageId"`
  18. PageSize string `json:"pageSize"`
  19. OrderBy string `json:"order_by"`
  20. MerchantName string `json:"merchant_name"`
  21. OrderBySate string `json:"order_by_sate"`
  22. PriceMin string `json:"price_min"`
  23. PriceMax string `json:"price_max"`
  24. ProfitMin string `json:"profit_min"`
  25. ProfitMax string `json:"profit_max"`
  26. }
  27. type GoodsRangeData struct {
  28. PriceRange string `json:"price_range"`
  29. LinePriceRange string `json:"line_price_range"`
  30. ProfitRange string `json:"profit_range"`
  31. WeightRange string `json:"weight_range"`
  32. }
  33. type GoodsListReq struct {
  34. Title string `form:"title"`
  35. MerchantName string `form:"merchant_name"`
  36. PageId string `form:"page"`
  37. PageSize string `form:"limit"`
  38. }