pay_wx_param.go 377 B

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