商品rpc数据格式及调用方法
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.

27 lines
638 B

  1. package productrpc
  2. type GetActivityParam struct {
  3. SiteId string `json:"site_id"`
  4. Dbname string `json:"database"`
  5. Id string `json:"id"`
  6. SkuId string `json:"sku_id"`
  7. ActivityStatus string `json:"activity_status"`
  8. }
  9. type GetUuidParam struct {
  10. SiteId string `json:"site_id"`
  11. Dbname string `json:"database"`
  12. Uuid string `json:"uuid"`
  13. Field string `json:"field"`
  14. }
  15. type BoolRet struct {
  16. Value bool `json:"value"`
  17. Msg string `json:"msg"`
  18. }
  19. type ReqParam struct {
  20. SiteId string `json:"site_id"`
  21. Dbname string `json:"database"`
  22. Id string `json:"id"`
  23. Field string `json:"field"`
  24. }