golang 的 rabbitmq 消费项目
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

alipay.go 648 B

il y a 1 an
il y a 11 mois
12345678910111213141516171819
  1. package md
  2. type AliPayPayParams struct {
  3. Subject string `json:"subject" binding:"required"`
  4. Amount string `json:"amount" binding:"required"`
  5. OrderType string `json:"order_type" binding:"required"`
  6. OrdId string `json:"ord_id"`
  7. Uid string `json:"uid"`
  8. Phone string `json:"phone"`
  9. }
  10. type AliPayPayParams1 struct {
  11. Subject string `json:"subject" binding:"required"`
  12. Amount string `json:"amount" binding:"required"`
  13. OrderType string `json:"order_type" binding:"required"`
  14. OrdId string `json:"ord_id"`
  15. AgentUid string `json:"agent_uid"`
  16. NotifyUrl string `json:"notify_url"`
  17. PageUrl string `json:"page_url"`
  18. }