PaymentCenter/app/http/entities/front/wechat.go

12 lines
336 B
Go

package front
type GetWxAuthUrlRequest struct {
PayChannelId string `json:"pay_channel_id" form:"pay_channel_id" validate:"required"`
}
type GetWxAuthRequest struct {
Code string `json:"code" form:"code" `
State string `json:"state" form:"state"`
PayChannelId string `json:"pay_channel_id" form:"pay_channel_id"`
}