golang 的 rabbitmq 消费项目
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.
 
 
 

11 lines
243 B

  1. package md
  2. type NewProductArgs struct {
  3. PriceType string `json:"price_type"`
  4. Id string `json:"id"`
  5. ProductId string `json:"product_id"`
  6. P int `json:"p"`
  7. Size int `json:"size"`
  8. Title string `json:"title"`
  9. }