pay_wx_param.go 521 B

12345678910111213141516171819
  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. EnterpriseId string `json:"enterprise_id"` // 企业id
  9. SubAccountId int64 `json:"sub_account_id"`
  10. TradeId string `json:"trade_id"`
  11. }
  12. type ReCodeUrl struct {
  13. CodeUrl string `json:"codeUrl"`
  14. TradeId string `json:"tradeId"`
  15. TimeExpire string `json:"timeExpire"`
  16. }