active.pay.go 917 B

12345678910111213141516171819202122232425262728
  1. package models
  2. type PendingCancelAmountRequest struct {
  3. OpenId string `json:"open_id"`
  4. Type int `json:"type"` //1-商家 2-客户
  5. }
  6. type PendingCancelAmountReply struct {
  7. Amount string `json:"amount"`
  8. }
  9. type GetGroupBuyPayRequest struct {
  10. OpenId string `json:"open_id"`
  11. UserType int `json:"user_type"` //1-商家 2-c端客户
  12. GroupBuyType int `json:"pay_type"` //1-待核销 2-已核销
  13. PageSize int `json:"page_size"`
  14. PageIndex int `json:"page_index"`
  15. }
  16. type GetGroupBuyPayReply struct {
  17. ActiveName string `json:"active_name"` //活动名称
  18. GroupBuyName string `json:"group_buy_name"` //拼团名称
  19. Amount string `json:"amount"` //交易金额
  20. MerchantAmount string `json:"merchant_amount"` //商家金额
  21. ClientAmount string `json:"client_amount"` //客户金额
  22. PayTime string `json:"pay_time"` //支付时间
  23. }