You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
682 B
Go
20 lines
682 B
Go
package request
|
|
|
|
type OrderRequest struct {
|
|
OrderNo string `json:"order_no"`
|
|
UserId int `json:"user_id"`
|
|
UserAccount string `json:"user_account"`
|
|
GameId int `json:"game_id"`
|
|
GameName string `json:"game_name"`
|
|
ServerId string `json:"server_id"`
|
|
ServerName string `json:"server_name"`
|
|
Subject string `json:"subject"`
|
|
RoleId string `json:"role_id"`
|
|
RoleName string `json:"role_name"`
|
|
PayAmount int `json:"pay_amount"`
|
|
NotifyUrl string `json:"notify_url"`
|
|
ReturnUrl string `json:"return_url"`
|
|
PromoteId int `json:"promote_id"`
|
|
PromoteAccount string `json:"promote_account"`
|
|
}
|