pay_wx_param.go 415 B

1234567891011121314151617
  1. package vo
  2. type GetCodeUrlParam struct {
  3. EnterpriseId string `json:"enterprise_id"` // 企业id
  4. SubAccountId int64 `json:"sub_account_id"`
  5. Amount int64 `json:"amount"` // 金额(分)
  6. }
  7. type QueryOrderByTradeIdParam struct {
  8. TradeId string `json:"trade_id"`
  9. }
  10. type ReCodeUrl struct {
  11. CodeUrl string `json:"codeUrl"`
  12. TradeId string `json:"tradeId"`
  13. TimeExpire string `json:"timeExpire"`
  14. }