25 lines
521 B
Protocol Buffer
25 lines
521 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = ".;pb";
|
|
import "pay_db.proto";
|
|
import "errorcode.proto";
|
|
|
|
//用户重置信息获取
|
|
message PayInfoReq {}
|
|
message PayInfoResp { DBPayDaily info = 1; }
|
|
|
|
//购买每日礼包
|
|
message PayDailyBuyReq { int32 id = 1; }
|
|
message PayDailyBuyResp { bool isucc = 1; }
|
|
|
|
///支付系统发货请求
|
|
message PayDeliveryReq {
|
|
string uid = 1;
|
|
string orderid = 2;
|
|
string productid = 3;
|
|
}
|
|
///支付系统发货请求 回应
|
|
message PayDeliveryResp {
|
|
ErrorCode code = 1;
|
|
string msg = 2;
|
|
}
|