You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.3 KiB
47 lines
1.3 KiB
syntax = "proto3"; |
|
|
|
package pb; |
|
|
|
option go_package = "../../pb"; |
|
|
|
// 服务器内部协议 |
|
message InnerRechargeReq { |
|
string OrderID = 1; // 游戏订单 |
|
int64 Amount = 2; // 订单金额 |
|
string Phone = 3; // 手机号 |
|
string Name = 4; // 玩家名字 |
|
uint32 UID = 5; // 玩家id |
|
string Email = 6; // email |
|
uint32 Channel = 7; // 支付渠道 |
|
string IP = 8; // ip |
|
bool IsPersonalCard = 9; // 是否是走个卡 |
|
uint32 PaySource = 10; // 支付方式 |
|
string Number = 11; // 付款信息 |
|
uint32 playerChannel = 12; // 玩家渠道 |
|
} |
|
|
|
message InnerRechargeResp { |
|
string APIOrderID = 1; // 第三方订单号 |
|
string URL = 2; // 支付地址 |
|
uint32 Channel = 3; // 支付渠道 |
|
} |
|
|
|
message InnerWithdrawReq { |
|
string OrderID = 1; // 游戏订单 |
|
int64 Amount = 2; // 订单金额 |
|
string Phone = 3; // 手机号 |
|
string Name = 4; // 玩家名字 |
|
string Email = 5; // 邮件 |
|
int64 PayType = 6; // 方式 |
|
string Number = 7; // 卡号 |
|
uint32 UID = 8; // uid |
|
int64 Channel = 9; // 代付选择的渠道 |
|
string Address = 10; |
|
uint32 PaySource = 11; // 支付方式 |
|
string IP = 12; // ip |
|
} |
|
|
|
message InnerWithdrawResp { |
|
string APIOrderID = 1; // 第三方订单号 |
|
uint32 Channel = 2; // 支付渠道 |
|
}
|
|
|