1563 lines
45 KiB
Go
1563 lines
45 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.28.0
|
|
// protoc v3.20.0
|
|
// source: pay/pay_msg.proto
|
|
|
|
package pb
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
//创建订单号请求
|
|
type PayCreateOrderReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Ptype DBPayType `protobuf:"varint,1,opt,name=ptype,proto3,enum=DBPayType" json:"ptype"`
|
|
Pid int32 `protobuf:"varint,2,opt,name=pid,proto3" json:"pid"`
|
|
BillingPoints string `protobuf:"bytes,3,opt,name=BillingPoints,proto3" json:"BillingPoints"`
|
|
}
|
|
|
|
func (x *PayCreateOrderReq) Reset() {
|
|
*x = PayCreateOrderReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayCreateOrderReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayCreateOrderReq) ProtoMessage() {}
|
|
|
|
func (x *PayCreateOrderReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[0]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayCreateOrderReq.ProtoReflect.Descriptor instead.
|
|
func (*PayCreateOrderReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *PayCreateOrderReq) GetPtype() DBPayType {
|
|
if x != nil {
|
|
return x.Ptype
|
|
}
|
|
return DBPayType_DiamondShop
|
|
}
|
|
|
|
func (x *PayCreateOrderReq) GetPid() int32 {
|
|
if x != nil {
|
|
return x.Pid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *PayCreateOrderReq) GetBillingPoints() string {
|
|
if x != nil {
|
|
return x.BillingPoints
|
|
}
|
|
return ""
|
|
}
|
|
|
|
//创建订单号请求
|
|
type PayCreateOrderResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Order *DBPayOrder `protobuf:"bytes,1,opt,name=order,proto3" json:"order"`
|
|
}
|
|
|
|
func (x *PayCreateOrderResp) Reset() {
|
|
*x = PayCreateOrderResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayCreateOrderResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayCreateOrderResp) ProtoMessage() {}
|
|
|
|
func (x *PayCreateOrderResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[1]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayCreateOrderResp.ProtoReflect.Descriptor instead.
|
|
func (*PayCreateOrderResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *PayCreateOrderResp) GetOrder() *DBPayOrder {
|
|
if x != nil {
|
|
return x.Order
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//取消订单号请求
|
|
type PayResponseOrderReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Oid string `protobuf:"bytes,1,opt,name=oid,proto3" json:"oid"`
|
|
State DBPayOrderState `protobuf:"varint,2,opt,name=State,proto3,enum=DBPayOrderState" json:"State"`
|
|
}
|
|
|
|
func (x *PayResponseOrderReq) Reset() {
|
|
*x = PayResponseOrderReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayResponseOrderReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayResponseOrderReq) ProtoMessage() {}
|
|
|
|
func (x *PayResponseOrderReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[2]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayResponseOrderReq.ProtoReflect.Descriptor instead.
|
|
func (*PayResponseOrderReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *PayResponseOrderReq) GetOid() string {
|
|
if x != nil {
|
|
return x.Oid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *PayResponseOrderReq) GetState() DBPayOrderState {
|
|
if x != nil {
|
|
return x.State
|
|
}
|
|
return DBPayOrderState_PayOrder_Unpaid
|
|
}
|
|
|
|
//取消订单号请求
|
|
type PayResponseOrderResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Oid string `protobuf:"bytes,1,opt,name=oid,proto3" json:"oid"`
|
|
}
|
|
|
|
func (x *PayResponseOrderResp) Reset() {
|
|
*x = PayResponseOrderResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayResponseOrderResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayResponseOrderResp) ProtoMessage() {}
|
|
|
|
func (x *PayResponseOrderResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[3]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayResponseOrderResp.ProtoReflect.Descriptor instead.
|
|
func (*PayResponseOrderResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *PayResponseOrderResp) GetOid() string {
|
|
if x != nil {
|
|
return x.Oid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
//充值记录
|
|
type PayRecordReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
}
|
|
|
|
func (x *PayRecordReq) Reset() {
|
|
*x = PayRecordReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayRecordReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayRecordReq) ProtoMessage() {}
|
|
|
|
func (x *PayRecordReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[4]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayRecordReq.ProtoReflect.Descriptor instead.
|
|
func (*PayRecordReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
//充值记录
|
|
type PayRecordResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Info *DBUserPay `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
|
|
}
|
|
|
|
func (x *PayRecordResp) Reset() {
|
|
*x = PayRecordResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayRecordResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayRecordResp) ProtoMessage() {}
|
|
|
|
func (x *PayRecordResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[5]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayRecordResp.ProtoReflect.Descriptor instead.
|
|
func (*PayRecordResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *PayRecordResp) GetInfo() *DBUserPay {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//用户重置信息获取
|
|
type PayDiamondInfoReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
}
|
|
|
|
func (x *PayDiamondInfoReq) Reset() {
|
|
*x = PayDiamondInfoReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDiamondInfoReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDiamondInfoReq) ProtoMessage() {}
|
|
|
|
func (x *PayDiamondInfoReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[6]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDiamondInfoReq.ProtoReflect.Descriptor instead.
|
|
func (*PayDiamondInfoReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
type PayDiamondInfoResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Info *DBPayDiamond `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
|
|
}
|
|
|
|
func (x *PayDiamondInfoResp) Reset() {
|
|
*x = PayDiamondInfoResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[7]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDiamondInfoResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDiamondInfoResp) ProtoMessage() {}
|
|
|
|
func (x *PayDiamondInfoResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[7]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDiamondInfoResp.ProtoReflect.Descriptor instead.
|
|
func (*PayDiamondInfoResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{7}
|
|
}
|
|
|
|
func (x *PayDiamondInfoResp) GetInfo() *DBPayDiamond {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//用户重置信息获取
|
|
type PayInfoReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
}
|
|
|
|
func (x *PayInfoReq) Reset() {
|
|
*x = PayInfoReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[8]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayInfoReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayInfoReq) ProtoMessage() {}
|
|
|
|
func (x *PayInfoReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[8]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayInfoReq.ProtoReflect.Descriptor instead.
|
|
func (*PayInfoReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{8}
|
|
}
|
|
|
|
type PayInfoResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Info *DBPayDaily `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
|
|
}
|
|
|
|
func (x *PayInfoResp) Reset() {
|
|
*x = PayInfoResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[9]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayInfoResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayInfoResp) ProtoMessage() {}
|
|
|
|
func (x *PayInfoResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[9]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayInfoResp.ProtoReflect.Descriptor instead.
|
|
func (*PayInfoResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{9}
|
|
}
|
|
|
|
func (x *PayInfoResp) GetInfo() *DBPayDaily {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//购买每日礼包
|
|
type PayDailyBuyReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
|
}
|
|
|
|
func (x *PayDailyBuyReq) Reset() {
|
|
*x = PayDailyBuyReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[10]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDailyBuyReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDailyBuyReq) ProtoMessage() {}
|
|
|
|
func (x *PayDailyBuyReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[10]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDailyBuyReq.ProtoReflect.Descriptor instead.
|
|
func (*PayDailyBuyReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{10}
|
|
}
|
|
|
|
func (x *PayDailyBuyReq) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PayDailyBuyResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Isucc bool `protobuf:"varint,1,opt,name=isucc,proto3" json:"isucc"`
|
|
Items []*UserAtno `protobuf:"bytes,2,rep,name=items,proto3" json:"items"`
|
|
}
|
|
|
|
func (x *PayDailyBuyResp) Reset() {
|
|
*x = PayDailyBuyResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[11]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDailyBuyResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDailyBuyResp) ProtoMessage() {}
|
|
|
|
func (x *PayDailyBuyResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[11]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDailyBuyResp.ProtoReflect.Descriptor instead.
|
|
func (*PayDailyBuyResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{11}
|
|
}
|
|
|
|
func (x *PayDailyBuyResp) GetIsucc() bool {
|
|
if x != nil {
|
|
return x.Isucc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *PayDailyBuyResp) GetItems() []*UserAtno {
|
|
if x != nil {
|
|
return x.Items
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//充值完成推送
|
|
type PayShippedPush struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Order *DBPayOrder `protobuf:"bytes,1,opt,name=order,proto3" json:"order"`
|
|
Items []*UserAtno `protobuf:"bytes,2,rep,name=items,proto3" json:"items"`
|
|
Info *DBUserPay `protobuf:"bytes,4,opt,name=info,proto3" json:"info"`
|
|
}
|
|
|
|
func (x *PayShippedPush) Reset() {
|
|
*x = PayShippedPush{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[12]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayShippedPush) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayShippedPush) ProtoMessage() {}
|
|
|
|
func (x *PayShippedPush) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[12]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayShippedPush.ProtoReflect.Descriptor instead.
|
|
func (*PayShippedPush) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{12}
|
|
}
|
|
|
|
func (x *PayShippedPush) GetOrder() *DBPayOrder {
|
|
if x != nil {
|
|
return x.Order
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *PayShippedPush) GetItems() []*UserAtno {
|
|
if x != nil {
|
|
return x.Items
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *PayShippedPush) GetInfo() *DBUserPay {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
///支付系统发货请求
|
|
type PayDeliveryReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Ptype DBPayType `protobuf:"varint,1,opt,name=ptype,proto3,enum=DBPayType" json:"ptype"`
|
|
Pid int32 `protobuf:"varint,2,opt,name=pid,proto3" json:"pid"`
|
|
BillingPoints string `protobuf:"bytes,3,opt,name=BillingPoints,proto3" json:"BillingPoints"`
|
|
}
|
|
|
|
func (x *PayDeliveryReq) Reset() {
|
|
*x = PayDeliveryReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[13]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDeliveryReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDeliveryReq) ProtoMessage() {}
|
|
|
|
func (x *PayDeliveryReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[13]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDeliveryReq.ProtoReflect.Descriptor instead.
|
|
func (*PayDeliveryReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{13}
|
|
}
|
|
|
|
func (x *PayDeliveryReq) GetPtype() DBPayType {
|
|
if x != nil {
|
|
return x.Ptype
|
|
}
|
|
return DBPayType_DiamondShop
|
|
}
|
|
|
|
func (x *PayDeliveryReq) GetPid() int32 {
|
|
if x != nil {
|
|
return x.Pid
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *PayDeliveryReq) GetBillingPoints() string {
|
|
if x != nil {
|
|
return x.BillingPoints
|
|
}
|
|
return ""
|
|
}
|
|
|
|
///支付系统发货请求 回应
|
|
type PayDeliveryResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Order *DBPayOrder `protobuf:"bytes,1,opt,name=order,proto3" json:"order"`
|
|
}
|
|
|
|
func (x *PayDeliveryResp) Reset() {
|
|
*x = PayDeliveryResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[14]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayDeliveryResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayDeliveryResp) ProtoMessage() {}
|
|
|
|
func (x *PayDeliveryResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[14]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayDeliveryResp.ProtoReflect.Descriptor instead.
|
|
func (*PayDeliveryResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{14}
|
|
}
|
|
|
|
func (x *PayDeliveryResp) GetOrder() *DBPayOrder {
|
|
if x != nil {
|
|
return x.Order
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// 获取礼包信息
|
|
type PayGetActivityReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Atype int32 `protobuf:"varint,1,opt,name=atype,proto3" json:"atype"` //活动类型
|
|
}
|
|
|
|
func (x *PayGetActivityReq) Reset() {
|
|
*x = PayGetActivityReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[15]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayGetActivityReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayGetActivityReq) ProtoMessage() {}
|
|
|
|
func (x *PayGetActivityReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[15]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayGetActivityReq.ProtoReflect.Descriptor instead.
|
|
func (*PayGetActivityReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{15}
|
|
}
|
|
|
|
func (x *PayGetActivityReq) GetAtype() int32 {
|
|
if x != nil {
|
|
return x.Atype
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PayGetActivityResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Info *ActivityGiftbagItem `protobuf:"bytes,1,opt,name=info,proto3" json:"info"`
|
|
}
|
|
|
|
func (x *PayGetActivityResp) Reset() {
|
|
*x = PayGetActivityResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[16]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayGetActivityResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayGetActivityResp) ProtoMessage() {}
|
|
|
|
func (x *PayGetActivityResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[16]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayGetActivityResp.ProtoReflect.Descriptor instead.
|
|
func (*PayGetActivityResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{16}
|
|
}
|
|
|
|
func (x *PayGetActivityResp) GetInfo() *ActivityGiftbagItem {
|
|
if x != nil {
|
|
return x.Info
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// 获取礼包信息
|
|
type PayActivityBuyReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
|
|
}
|
|
|
|
func (x *PayActivityBuyReq) Reset() {
|
|
*x = PayActivityBuyReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[17]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayActivityBuyReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayActivityBuyReq) ProtoMessage() {}
|
|
|
|
func (x *PayActivityBuyReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[17]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayActivityBuyReq.ProtoReflect.Descriptor instead.
|
|
func (*PayActivityBuyReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{17}
|
|
}
|
|
|
|
func (x *PayActivityBuyReq) GetId() int32 {
|
|
if x != nil {
|
|
return x.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type PayActivityResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Isucc bool `protobuf:"varint,1,opt,name=isucc,proto3" json:"isucc"`
|
|
Items []*UserAssets `protobuf:"bytes,2,rep,name=items,proto3" json:"items"`
|
|
}
|
|
|
|
func (x *PayActivityResp) Reset() {
|
|
*x = PayActivityResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[18]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *PayActivityResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*PayActivityResp) ProtoMessage() {}
|
|
|
|
func (x *PayActivityResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[18]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use PayActivityResp.ProtoReflect.Descriptor instead.
|
|
func (*PayActivityResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{18}
|
|
}
|
|
|
|
func (x *PayActivityResp) GetIsucc() bool {
|
|
if x != nil {
|
|
return x.Isucc
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *PayActivityResp) GetItems() []*UserAssets {
|
|
if x != nil {
|
|
return x.Items
|
|
}
|
|
return nil
|
|
}
|
|
|
|
///支付系统发货请求
|
|
type HttpPayDeliveryReq struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid"`
|
|
Orderid string `protobuf:"bytes,2,opt,name=orderid,proto3" json:"orderid"`
|
|
Productid string `protobuf:"bytes,3,opt,name=productid,proto3" json:"productid"`
|
|
Price int32 `protobuf:"varint,4,opt,name=price,proto3" json:"price"`
|
|
Amount int32 `protobuf:"varint,5,opt,name=amount,proto3" json:"amount"`
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) Reset() {
|
|
*x = HttpPayDeliveryReq{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[19]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*HttpPayDeliveryReq) ProtoMessage() {}
|
|
|
|
func (x *HttpPayDeliveryReq) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[19]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use HttpPayDeliveryReq.ProtoReflect.Descriptor instead.
|
|
func (*HttpPayDeliveryReq) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{19}
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) GetUid() string {
|
|
if x != nil {
|
|
return x.Uid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) GetOrderid() string {
|
|
if x != nil {
|
|
return x.Orderid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) GetProductid() string {
|
|
if x != nil {
|
|
return x.Productid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) GetPrice() int32 {
|
|
if x != nil {
|
|
return x.Price
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *HttpPayDeliveryReq) GetAmount() int32 {
|
|
if x != nil {
|
|
return x.Amount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
///支付系统发货请求 回应
|
|
type HttpPayDeliveryResp struct {
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
Code ErrorCode `protobuf:"varint,1,opt,name=code,proto3,enum=ErrorCode" json:"s"` //头像
|
|
Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg"`
|
|
Data string `protobuf:"bytes,3,opt,name=data,proto3" json:"data"`
|
|
}
|
|
|
|
func (x *HttpPayDeliveryResp) Reset() {
|
|
*x = HttpPayDeliveryResp{}
|
|
if protoimpl.UnsafeEnabled {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[20]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
|
|
func (x *HttpPayDeliveryResp) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*HttpPayDeliveryResp) ProtoMessage() {}
|
|
|
|
func (x *HttpPayDeliveryResp) ProtoReflect() protoreflect.Message {
|
|
mi := &file_pay_pay_msg_proto_msgTypes[20]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use HttpPayDeliveryResp.ProtoReflect.Descriptor instead.
|
|
func (*HttpPayDeliveryResp) Descriptor() ([]byte, []int) {
|
|
return file_pay_pay_msg_proto_rawDescGZIP(), []int{20}
|
|
}
|
|
|
|
func (x *HttpPayDeliveryResp) GetCode() ErrorCode {
|
|
if x != nil {
|
|
return x.Code
|
|
}
|
|
return ErrorCode_Success
|
|
}
|
|
|
|
func (x *HttpPayDeliveryResp) GetMsg() string {
|
|
if x != nil {
|
|
return x.Msg
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *HttpPayDeliveryResp) GetData() string {
|
|
if x != nil {
|
|
return x.Data
|
|
}
|
|
return ""
|
|
}
|
|
|
|
var File_pay_pay_msg_proto protoreflect.FileDescriptor
|
|
|
|
var file_pay_pay_msg_proto_rawDesc = []byte{
|
|
0x0a, 0x11, 0x70, 0x61, 0x79, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72,
|
|
0x6f, 0x74, 0x6f, 0x1a, 0x10, 0x70, 0x61, 0x79, 0x2f, 0x70, 0x61, 0x79, 0x5f, 0x64, 0x62, 0x2e,
|
|
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0a, 0x63, 0x6f, 0x6d, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
0x6f, 0x1a, 0x0f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
0x74, 0x6f, 0x22, 0x6d, 0x0a, 0x11, 0x50, 0x61, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,
|
|
0x72, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x54, 0x79,
|
|
0x70, 0x65, 0x52, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64,
|
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42,
|
|
0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01,
|
|
0x28, 0x09, 0x52, 0x0d, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x50, 0x6f, 0x69, 0x6e, 0x74,
|
|
0x73, 0x22, 0x37, 0x0a, 0x12, 0x50, 0x61, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72,
|
|
0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x4f, 0x72,
|
|
0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x4f, 0x0a, 0x13, 0x50, 0x61,
|
|
0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x65,
|
|
0x71, 0x12, 0x10, 0x0a, 0x03, 0x6f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
|
0x6f, 0x69, 0x64, 0x12, 0x26, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01,
|
|
0x28, 0x0e, 0x32, 0x10, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53,
|
|
0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x22, 0x28, 0x0a, 0x14, 0x50,
|
|
0x61, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52,
|
|
0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x6f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
0x52, 0x03, 0x6f, 0x69, 0x64, 0x22, 0x0e, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x52, 0x65, 0x63, 0x6f,
|
|
0x72, 0x64, 0x52, 0x65, 0x71, 0x22, 0x2f, 0x0a, 0x0d, 0x50, 0x61, 0x79, 0x52, 0x65, 0x63, 0x6f,
|
|
0x72, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1e, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x79,
|
|
0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x13, 0x0a, 0x11, 0x50, 0x61, 0x79, 0x44, 0x69, 0x61,
|
|
0x6d, 0x6f, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x22, 0x37, 0x0a, 0x12, 0x50,
|
|
0x61, 0x79, 0x44, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
|
|
0x70, 0x12, 0x21, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
0x0d, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x44, 0x69, 0x61, 0x6d, 0x6f, 0x6e, 0x64, 0x52, 0x04,
|
|
0x69, 0x6e, 0x66, 0x6f, 0x22, 0x0c, 0x0a, 0x0a, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52,
|
|
0x65, 0x71, 0x22, 0x2e, 0x0a, 0x0b, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
|
|
0x70, 0x12, 0x1f, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
0x0b, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x52, 0x04, 0x69, 0x6e,
|
|
0x66, 0x6f, 0x22, 0x20, 0x0a, 0x0e, 0x50, 0x61, 0x79, 0x44, 0x61, 0x69, 0x6c, 0x79, 0x42, 0x75,
|
|
0x79, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
|
|
0x52, 0x02, 0x69, 0x64, 0x22, 0x48, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x44, 0x61, 0x69, 0x6c, 0x79,
|
|
0x42, 0x75, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x75, 0x63, 0x63,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x75, 0x63, 0x63, 0x12, 0x1f, 0x0a,
|
|
0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55,
|
|
0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x74,
|
|
0x0a, 0x0e, 0x50, 0x61, 0x79, 0x53, 0x68, 0x69, 0x70, 0x70, 0x65, 0x64, 0x50, 0x75, 0x73, 0x68,
|
|
0x12, 0x21, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
0x0b, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52, 0x05, 0x6f, 0x72,
|
|
0x64, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03,
|
|
0x28, 0x0b, 0x32, 0x09, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x6e, 0x6f, 0x52, 0x05, 0x69,
|
|
0x74, 0x65, 0x6d, 0x73, 0x12, 0x1e, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01,
|
|
0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x44, 0x42, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x79, 0x52, 0x04,
|
|
0x69, 0x6e, 0x66, 0x6f, 0x22, 0x6a, 0x0a, 0x0e, 0x50, 0x61, 0x79, 0x44, 0x65, 0x6c, 0x69, 0x76,
|
|
0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x18,
|
|
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x54, 0x79, 0x70,
|
|
0x65, 0x52, 0x05, 0x70, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18,
|
|
0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x69,
|
|
0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
0x09, 0x52, 0x0d, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x73,
|
|
0x22, 0x34, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x52,
|
|
0x65, 0x73, 0x70, 0x12, 0x21, 0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
|
|
0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x44, 0x42, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x52,
|
|
0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x22, 0x29, 0x0a, 0x11, 0x50, 0x61, 0x79, 0x47, 0x65, 0x74,
|
|
0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61,
|
|
0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x61, 0x74, 0x79, 0x70,
|
|
0x65, 0x22, 0x3e, 0x0a, 0x12, 0x50, 0x61, 0x79, 0x47, 0x65, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76,
|
|
0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18,
|
|
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
|
|
0x47, 0x69, 0x66, 0x74, 0x62, 0x61, 0x67, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x69, 0x6e, 0x66,
|
|
0x6f, 0x22, 0x23, 0x0a, 0x11, 0x50, 0x61, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
|
|
0x42, 0x75, 0x79, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4a, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x41, 0x63, 0x74,
|
|
0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x75,
|
|
0x63, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x75, 0x63, 0x63, 0x12,
|
|
0x21, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b,
|
|
0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x05, 0x69, 0x74, 0x65,
|
|
0x6d, 0x73, 0x22, 0x8c, 0x01, 0x0a, 0x12, 0x48, 0x74, 0x74, 0x70, 0x50, 0x61, 0x79, 0x44, 0x65,
|
|
0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6f,
|
|
0x72, 0x64, 0x65, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72,
|
|
0x64, 0x65, 0x72, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
|
|
0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
|
|
0x74, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01,
|
|
0x28, 0x05, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f,
|
|
0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e,
|
|
0x74, 0x22, 0x5b, 0x0a, 0x13, 0x48, 0x74, 0x74, 0x70, 0x50, 0x61, 0x79, 0x44, 0x65, 0x6c, 0x69,
|
|
0x76, 0x65, 0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1e, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
|
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0a, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
|
|
0x64, 0x65, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18,
|
|
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
|
|
0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x06,
|
|
0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
|
|
var (
|
|
file_pay_pay_msg_proto_rawDescOnce sync.Once
|
|
file_pay_pay_msg_proto_rawDescData = file_pay_pay_msg_proto_rawDesc
|
|
)
|
|
|
|
func file_pay_pay_msg_proto_rawDescGZIP() []byte {
|
|
file_pay_pay_msg_proto_rawDescOnce.Do(func() {
|
|
file_pay_pay_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_pay_pay_msg_proto_rawDescData)
|
|
})
|
|
return file_pay_pay_msg_proto_rawDescData
|
|
}
|
|
|
|
var file_pay_pay_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
|
|
var file_pay_pay_msg_proto_goTypes = []interface{}{
|
|
(*PayCreateOrderReq)(nil), // 0: PayCreateOrderReq
|
|
(*PayCreateOrderResp)(nil), // 1: PayCreateOrderResp
|
|
(*PayResponseOrderReq)(nil), // 2: PayResponseOrderReq
|
|
(*PayResponseOrderResp)(nil), // 3: PayResponseOrderResp
|
|
(*PayRecordReq)(nil), // 4: PayRecordReq
|
|
(*PayRecordResp)(nil), // 5: PayRecordResp
|
|
(*PayDiamondInfoReq)(nil), // 6: PayDiamondInfoReq
|
|
(*PayDiamondInfoResp)(nil), // 7: PayDiamondInfoResp
|
|
(*PayInfoReq)(nil), // 8: PayInfoReq
|
|
(*PayInfoResp)(nil), // 9: PayInfoResp
|
|
(*PayDailyBuyReq)(nil), // 10: PayDailyBuyReq
|
|
(*PayDailyBuyResp)(nil), // 11: PayDailyBuyResp
|
|
(*PayShippedPush)(nil), // 12: PayShippedPush
|
|
(*PayDeliveryReq)(nil), // 13: PayDeliveryReq
|
|
(*PayDeliveryResp)(nil), // 14: PayDeliveryResp
|
|
(*PayGetActivityReq)(nil), // 15: PayGetActivityReq
|
|
(*PayGetActivityResp)(nil), // 16: PayGetActivityResp
|
|
(*PayActivityBuyReq)(nil), // 17: PayActivityBuyReq
|
|
(*PayActivityResp)(nil), // 18: PayActivityResp
|
|
(*HttpPayDeliveryReq)(nil), // 19: HttpPayDeliveryReq
|
|
(*HttpPayDeliveryResp)(nil), // 20: HttpPayDeliveryResp
|
|
(DBPayType)(0), // 21: DBPayType
|
|
(*DBPayOrder)(nil), // 22: DBPayOrder
|
|
(DBPayOrderState)(0), // 23: DBPayOrderState
|
|
(*DBUserPay)(nil), // 24: DBUserPay
|
|
(*DBPayDiamond)(nil), // 25: DBPayDiamond
|
|
(*DBPayDaily)(nil), // 26: DBPayDaily
|
|
(*UserAtno)(nil), // 27: UserAtno
|
|
(*ActivityGiftbagItem)(nil), // 28: ActivityGiftbagItem
|
|
(*UserAssets)(nil), // 29: UserAssets
|
|
(ErrorCode)(0), // 30: ErrorCode
|
|
}
|
|
var file_pay_pay_msg_proto_depIdxs = []int32{
|
|
21, // 0: PayCreateOrderReq.ptype:type_name -> DBPayType
|
|
22, // 1: PayCreateOrderResp.order:type_name -> DBPayOrder
|
|
23, // 2: PayResponseOrderReq.State:type_name -> DBPayOrderState
|
|
24, // 3: PayRecordResp.info:type_name -> DBUserPay
|
|
25, // 4: PayDiamondInfoResp.info:type_name -> DBPayDiamond
|
|
26, // 5: PayInfoResp.info:type_name -> DBPayDaily
|
|
27, // 6: PayDailyBuyResp.items:type_name -> UserAtno
|
|
22, // 7: PayShippedPush.order:type_name -> DBPayOrder
|
|
27, // 8: PayShippedPush.items:type_name -> UserAtno
|
|
24, // 9: PayShippedPush.info:type_name -> DBUserPay
|
|
21, // 10: PayDeliveryReq.ptype:type_name -> DBPayType
|
|
22, // 11: PayDeliveryResp.order:type_name -> DBPayOrder
|
|
28, // 12: PayGetActivityResp.info:type_name -> ActivityGiftbagItem
|
|
29, // 13: PayActivityResp.items:type_name -> UserAssets
|
|
30, // 14: HttpPayDeliveryResp.code:type_name -> ErrorCode
|
|
15, // [15:15] is the sub-list for method output_type
|
|
15, // [15:15] is the sub-list for method input_type
|
|
15, // [15:15] is the sub-list for extension type_name
|
|
15, // [15:15] is the sub-list for extension extendee
|
|
0, // [0:15] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_pay_pay_msg_proto_init() }
|
|
func file_pay_pay_msg_proto_init() {
|
|
if File_pay_pay_msg_proto != nil {
|
|
return
|
|
}
|
|
file_pay_pay_db_proto_init()
|
|
file_comm_proto_init()
|
|
file_errorcode_proto_init()
|
|
if !protoimpl.UnsafeEnabled {
|
|
file_pay_pay_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayCreateOrderReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayCreateOrderResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayResponseOrderReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayResponseOrderResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayRecordReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayRecordResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDiamondInfoReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDiamondInfoResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayInfoReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayInfoResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDailyBuyReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDailyBuyResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayShippedPush); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDeliveryReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayDeliveryResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayGetActivityReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayGetActivityResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayActivityBuyReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*PayActivityResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*HttpPayDeliveryReq); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
file_pay_pay_msg_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*HttpPayDeliveryResp); i {
|
|
case 0:
|
|
return &v.state
|
|
case 1:
|
|
return &v.sizeCache
|
|
case 2:
|
|
return &v.unknownFields
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_pay_pay_msg_proto_rawDesc,
|
|
NumEnums: 0,
|
|
NumMessages: 21,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_pay_pay_msg_proto_goTypes,
|
|
DependencyIndexes: file_pay_pay_msg_proto_depIdxs,
|
|
MessageInfos: file_pay_pay_msg_proto_msgTypes,
|
|
}.Build()
|
|
File_pay_pay_msg_proto = out.File
|
|
file_pay_pay_msg_proto_rawDesc = nil
|
|
file_pay_pay_msg_proto_goTypes = nil
|
|
file_pay_pay_msg_proto_depIdxs = nil
|
|
}
|