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.
2665 lines
85 KiB
Go
2665 lines
85 KiB
Go
3 years ago
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// protoc-gen-go v1.28.0
|
||
|
// protoc v3.19.4
|
||
|
// source: rpc/pb/user_center.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)
|
||
|
)
|
||
|
|
||
|
// model
|
||
|
type User struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
||
|
PhoneNumber string `protobuf:"bytes,3,opt,name=phoneNumber,proto3" json:"phoneNumber,omitempty"`
|
||
|
Email string `protobuf:"bytes,4,opt,name=email,proto3" json:"email,omitempty"`
|
||
|
Password string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty"`
|
||
|
// profile
|
||
|
Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
Nickname string `protobuf:"bytes,7,opt,name=nickname,proto3" json:"nickname,omitempty"`
|
||
|
Gender int64 `protobuf:"varint,8,opt,name=gender,proto3" json:"gender,omitempty"`
|
||
|
Birthdate string `protobuf:"bytes,9,opt,name=birthdate,proto3" json:"birthdate,omitempty"`
|
||
|
Address string `protobuf:"bytes,10,opt,name=address,proto3" json:"address,omitempty"`
|
||
|
Age int32 `protobuf:"varint,11,opt,name=age,proto3" json:"age,omitempty"`
|
||
|
Country string `protobuf:"bytes,12,opt,name=country,proto3" json:"country,omitempty"`
|
||
|
Picture string `protobuf:"bytes,13,opt,name=picture,proto3" json:"picture,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *User) Reset() {
|
||
|
*x = User{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[0]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *User) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*User) ProtoMessage() {}
|
||
|
|
||
|
func (x *User) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 User.ProtoReflect.Descriptor instead.
|
||
|
func (*User) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{0}
|
||
|
}
|
||
|
|
||
|
func (x *User) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *User) GetUsername() string {
|
||
|
if x != nil {
|
||
|
return x.Username
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetPhoneNumber() string {
|
||
|
if x != nil {
|
||
|
return x.PhoneNumber
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetEmail() string {
|
||
|
if x != nil {
|
||
|
return x.Email
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetPassword() string {
|
||
|
if x != nil {
|
||
|
return x.Password
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetName() string {
|
||
|
if x != nil {
|
||
|
return x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetNickname() string {
|
||
|
if x != nil {
|
||
|
return x.Nickname
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetGender() int64 {
|
||
|
if x != nil {
|
||
|
return x.Gender
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *User) GetBirthdate() string {
|
||
|
if x != nil {
|
||
|
return x.Birthdate
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetAddress() string {
|
||
|
if x != nil {
|
||
|
return x.Address
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetAge() int32 {
|
||
|
if x != nil {
|
||
|
return x.Age
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *User) GetCountry() string {
|
||
|
if x != nil {
|
||
|
return x.Country
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *User) GetPicture() string {
|
||
|
if x != nil {
|
||
|
return x.Picture
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type UserLoginRecord struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
UserId int64 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
||
|
LastLoginAt string `protobuf:"bytes,2,opt,name=lastLoginAt,proto3" json:"lastLoginAt,omitempty"`
|
||
|
LastLoginIp string `protobuf:"bytes,3,opt,name=lastLoginIp,proto3" json:"lastLoginIp,omitempty"`
|
||
|
LastLoginDevice string `protobuf:"bytes,4,opt,name=lastLoginDevice,proto3" json:"lastLoginDevice,omitempty"`
|
||
|
LastLoginUA string `protobuf:"bytes,5,opt,name=lastLoginUA,proto3" json:"lastLoginUA,omitempty"`
|
||
|
Count string `protobuf:"bytes,6,opt,name=count,proto3" json:"count,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) Reset() {
|
||
|
*x = UserLoginRecord{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[1]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UserLoginRecord) ProtoMessage() {}
|
||
|
|
||
|
func (x *UserLoginRecord) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 UserLoginRecord.ProtoReflect.Descriptor instead.
|
||
|
func (*UserLoginRecord) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{1}
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetUserId() int64 {
|
||
|
if x != nil {
|
||
|
return x.UserId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetLastLoginAt() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginAt
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetLastLoginIp() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginIp
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetLastLoginDevice() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginDevice
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetLastLoginUA() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginUA
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecord) GetCount() string {
|
||
|
if x != nil {
|
||
|
return x.Count
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type Role struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
Desc string `protobuf:"bytes,4,opt,name=desc,proto3" json:"desc,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *Role) Reset() {
|
||
|
*x = Role{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[2]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *Role) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*Role) ProtoMessage() {}
|
||
|
|
||
|
func (x *Role) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 Role.ProtoReflect.Descriptor instead.
|
||
|
func (*Role) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{2}
|
||
|
}
|
||
|
|
||
|
func (x *Role) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *Role) GetCode() string {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *Role) GetName() string {
|
||
|
if x != nil {
|
||
|
return x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *Role) GetDesc() string {
|
||
|
if x != nil {
|
||
|
return x.Desc
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type EmptyMessage struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
}
|
||
|
|
||
|
func (x *EmptyMessage) Reset() {
|
||
|
*x = EmptyMessage{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[3]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *EmptyMessage) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*EmptyMessage) ProtoMessage() {}
|
||
|
|
||
|
func (x *EmptyMessage) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 EmptyMessage.ProtoReflect.Descriptor instead.
|
||
|
func (*EmptyMessage) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{3}
|
||
|
}
|
||
|
|
||
|
type SimpleMessage struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Msg string `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *SimpleMessage) Reset() {
|
||
|
*x = SimpleMessage{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[4]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *SimpleMessage) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*SimpleMessage) ProtoMessage() {}
|
||
|
|
||
|
func (x *SimpleMessage) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 SimpleMessage.ProtoReflect.Descriptor instead.
|
||
|
func (*SimpleMessage) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{4}
|
||
|
}
|
||
|
|
||
|
func (x *SimpleMessage) GetMsg() string {
|
||
|
if x != nil {
|
||
|
return x.Msg
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type CreateUserReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
||
|
Username *string `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
|
||
|
PhoneNumber *string `protobuf:"bytes,3,opt,name=phoneNumber,proto3,oneof" json:"phoneNumber,omitempty"`
|
||
|
Email *string `protobuf:"bytes,4,opt,name=email,proto3,oneof" json:"email,omitempty"`
|
||
|
Password *string `protobuf:"bytes,5,opt,name=password,proto3,oneof" json:"password,omitempty"`
|
||
|
// profile
|
||
|
Name *string `protobuf:"bytes,6,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
||
|
Nickname *string `protobuf:"bytes,7,opt,name=nickname,proto3,oneof" json:"nickname,omitempty"`
|
||
|
Gender *int64 `protobuf:"varint,8,opt,name=gender,proto3,oneof" json:"gender,omitempty"`
|
||
|
Birthdate *string `protobuf:"bytes,9,opt,name=birthdate,proto3,oneof" json:"birthdate,omitempty"`
|
||
|
Address *string `protobuf:"bytes,10,opt,name=address,proto3,oneof" json:"address,omitempty"`
|
||
|
Age *int64 `protobuf:"varint,11,opt,name=age,proto3,oneof" json:"age,omitempty"`
|
||
|
Country *string `protobuf:"bytes,12,opt,name=country,proto3,oneof" json:"country,omitempty"`
|
||
|
Picture *string `protobuf:"bytes,13,opt,name=picture,proto3,oneof" json:"picture,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) Reset() {
|
||
|
*x = CreateUserReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[5]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*CreateUserReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *CreateUserReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 CreateUserReq.ProtoReflect.Descriptor instead.
|
||
|
func (*CreateUserReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{5}
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetId() int64 {
|
||
|
if x != nil && x.Id != nil {
|
||
|
return *x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetUsername() string {
|
||
|
if x != nil && x.Username != nil {
|
||
|
return *x.Username
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetPhoneNumber() string {
|
||
|
if x != nil && x.PhoneNumber != nil {
|
||
|
return *x.PhoneNumber
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetEmail() string {
|
||
|
if x != nil && x.Email != nil {
|
||
|
return *x.Email
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetPassword() string {
|
||
|
if x != nil && x.Password != nil {
|
||
|
return *x.Password
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetName() string {
|
||
|
if x != nil && x.Name != nil {
|
||
|
return *x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetNickname() string {
|
||
|
if x != nil && x.Nickname != nil {
|
||
|
return *x.Nickname
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetGender() int64 {
|
||
|
if x != nil && x.Gender != nil {
|
||
|
return *x.Gender
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetBirthdate() string {
|
||
|
if x != nil && x.Birthdate != nil {
|
||
|
return *x.Birthdate
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetAddress() string {
|
||
|
if x != nil && x.Address != nil {
|
||
|
return *x.Address
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetAge() int64 {
|
||
|
if x != nil && x.Age != nil {
|
||
|
return *x.Age
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetCountry() string {
|
||
|
if x != nil && x.Country != nil {
|
||
|
return *x.Country
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserReq) GetPicture() string {
|
||
|
if x != nil && x.Picture != nil {
|
||
|
return *x.Picture
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type CreateUserResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserResp) Reset() {
|
||
|
*x = CreateUserResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[6]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*CreateUserResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *CreateUserResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 CreateUserResp.ProtoReflect.Descriptor instead.
|
||
|
func (*CreateUserResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{6}
|
||
|
}
|
||
|
|
||
|
func (x *CreateUserResp) GetUser() *User {
|
||
|
if x != nil {
|
||
|
return x.User
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type UpdateUserReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
// profile
|
||
|
Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
||
|
Nickname *string `protobuf:"bytes,3,opt,name=nickname,proto3,oneof" json:"nickname,omitempty"`
|
||
|
Gender *int64 `protobuf:"varint,4,opt,name=gender,proto3,oneof" json:"gender,omitempty"`
|
||
|
Birthdate *string `protobuf:"bytes,5,opt,name=birthdate,proto3,oneof" json:"birthdate,omitempty"`
|
||
|
Address *string `protobuf:"bytes,6,opt,name=address,proto3,oneof" json:"address,omitempty"`
|
||
|
Age *int64 `protobuf:"varint,7,opt,name=age,proto3,oneof" json:"age,omitempty"`
|
||
|
Country *string `protobuf:"bytes,8,opt,name=country,proto3,oneof" json:"country,omitempty"`
|
||
|
Picture *string `protobuf:"bytes,9,opt,name=picture,proto3,oneof" json:"picture,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) Reset() {
|
||
|
*x = UpdateUserReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[7]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UpdateUserReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *UpdateUserReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 UpdateUserReq.ProtoReflect.Descriptor instead.
|
||
|
func (*UpdateUserReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{7}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetName() string {
|
||
|
if x != nil && x.Name != nil {
|
||
|
return *x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetNickname() string {
|
||
|
if x != nil && x.Nickname != nil {
|
||
|
return *x.Nickname
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetGender() int64 {
|
||
|
if x != nil && x.Gender != nil {
|
||
|
return *x.Gender
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetBirthdate() string {
|
||
|
if x != nil && x.Birthdate != nil {
|
||
|
return *x.Birthdate
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetAddress() string {
|
||
|
if x != nil && x.Address != nil {
|
||
|
return *x.Address
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetAge() int64 {
|
||
|
if x != nil && x.Age != nil {
|
||
|
return *x.Age
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetCountry() string {
|
||
|
if x != nil && x.Country != nil {
|
||
|
return *x.Country
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserReq) GetPicture() string {
|
||
|
if x != nil && x.Picture != nil {
|
||
|
return *x.Picture
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type UpdateUserResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserResp) Reset() {
|
||
|
*x = UpdateUserResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[8]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UpdateUserResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *UpdateUserResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 UpdateUserResp.ProtoReflect.Descriptor instead.
|
||
|
func (*UpdateUserResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{8}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateUserResp) GetUser() *User {
|
||
|
if x != nil {
|
||
|
return x.User
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DeleteUserReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserReq) Reset() {
|
||
|
*x = DeleteUserReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[9]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*DeleteUserReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *DeleteUserReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 DeleteUserReq.ProtoReflect.Descriptor instead.
|
||
|
func (*DeleteUserReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{9}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserReq) GetIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.Ids
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DeleteUserResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserResp) Reset() {
|
||
|
*x = DeleteUserResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[10]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*DeleteUserResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *DeleteUserResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 DeleteUserResp.ProtoReflect.Descriptor instead.
|
||
|
func (*DeleteUserResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{10}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteUserResp) GetIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.Ids
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type GetUserReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
||
|
Username *string `protobuf:"bytes,2,opt,name=username,proto3,oneof" json:"username,omitempty"`
|
||
|
PhoneNumber *string `protobuf:"bytes,3,opt,name=phoneNumber,proto3,oneof" json:"phoneNumber,omitempty"`
|
||
|
Email *string `protobuf:"bytes,4,opt,name=email,proto3,oneof" json:"email,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) Reset() {
|
||
|
*x = GetUserReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[11]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetUserReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetUserReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 GetUserReq.ProtoReflect.Descriptor instead.
|
||
|
func (*GetUserReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{11}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) GetId() int64 {
|
||
|
if x != nil && x.Id != nil {
|
||
|
return *x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) GetUsername() string {
|
||
|
if x != nil && x.Username != nil {
|
||
|
return *x.Username
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) GetPhoneNumber() string {
|
||
|
if x != nil && x.PhoneNumber != nil {
|
||
|
return *x.PhoneNumber
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *GetUserReq) GetEmail() string {
|
||
|
if x != nil && x.Email != nil {
|
||
|
return *x.Email
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type GetUserBySocialReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Platform string `protobuf:"bytes,1,opt,name=platform,proto3" json:"platform,omitempty"` // 平台类型
|
||
|
Uuid string `protobuf:"bytes,2,opt,name=uuid,proto3" json:"uuid,omitempty"` // platform: openid | unionid
|
||
|
}
|
||
|
|
||
|
func (x *GetUserBySocialReq) Reset() {
|
||
|
*x = GetUserBySocialReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[12]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserBySocialReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetUserBySocialReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetUserBySocialReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 GetUserBySocialReq.ProtoReflect.Descriptor instead.
|
||
|
func (*GetUserBySocialReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{12}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserBySocialReq) GetPlatform() string {
|
||
|
if x != nil {
|
||
|
return x.Platform
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *GetUserBySocialReq) GetUuid() string {
|
||
|
if x != nil {
|
||
|
return x.Uuid
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type GetUserResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GetUserResp) Reset() {
|
||
|
*x = GetUserResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[13]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetUserResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetUserResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 GetUserResp.ProtoReflect.Descriptor instead.
|
||
|
func (*GetUserResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{13}
|
||
|
}
|
||
|
|
||
|
func (x *GetUserResp) GetUser() *User {
|
||
|
if x != nil {
|
||
|
return x.User
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type UserLoginRecordReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
UserId int64 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
||
|
LastLoginIp string `protobuf:"bytes,2,opt,name=lastLoginIp,proto3" json:"lastLoginIp,omitempty"`
|
||
|
LastLoginDevice string `protobuf:"bytes,3,opt,name=lastLoginDevice,proto3" json:"lastLoginDevice,omitempty"`
|
||
|
LastLoginUA string `protobuf:"bytes,4,opt,name=lastLoginUA,proto3" json:"lastLoginUA,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) Reset() {
|
||
|
*x = UserLoginRecordReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[14]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UserLoginRecordReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *UserLoginRecordReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 UserLoginRecordReq.ProtoReflect.Descriptor instead.
|
||
|
func (*UserLoginRecordReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{14}
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) GetUserId() int64 {
|
||
|
if x != nil {
|
||
|
return x.UserId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) GetLastLoginIp() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginIp
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) GetLastLoginDevice() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginDevice
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UserLoginRecordReq) GetLastLoginUA() string {
|
||
|
if x != nil {
|
||
|
return x.LastLoginUA
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
// ModifyAccountReq 修改账户
|
||
|
type ModifyAccountReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
PhoneNumber *string `protobuf:"bytes,2,opt,name=phoneNumber,proto3,oneof" json:"phoneNumber,omitempty"`
|
||
|
Email *string `protobuf:"bytes,3,opt,name=email,proto3,oneof" json:"email,omitempty"`
|
||
|
Username *string `protobuf:"bytes,4,opt,name=username,proto3,oneof" json:"username,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) Reset() {
|
||
|
*x = ModifyAccountReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[15]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*ModifyAccountReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *ModifyAccountReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 ModifyAccountReq.ProtoReflect.Descriptor instead.
|
||
|
func (*ModifyAccountReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{15}
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) GetPhoneNumber() string {
|
||
|
if x != nil && x.PhoneNumber != nil {
|
||
|
return *x.PhoneNumber
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) GetEmail() string {
|
||
|
if x != nil && x.Email != nil {
|
||
|
return *x.Email
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *ModifyAccountReq) GetUsername() string {
|
||
|
if x != nil && x.Username != nil {
|
||
|
return *x.Username
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type BindSocialReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
Platform string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty"`
|
||
|
Profile string `protobuf:"bytes,3,opt,name=profile,proto3" json:"profile,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialReq) Reset() {
|
||
|
*x = BindSocialReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[16]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindSocialReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindSocialReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 BindSocialReq.ProtoReflect.Descriptor instead.
|
||
|
func (*BindSocialReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{16}
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialReq) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialReq) GetPlatform() string {
|
||
|
if x != nil {
|
||
|
return x.Platform
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialReq) GetProfile() string {
|
||
|
if x != nil {
|
||
|
return x.Profile
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type BindSocialResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
SocialProfile string `protobuf:"bytes,2,opt,name=socialProfile,proto3" json:"socialProfile,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialResp) Reset() {
|
||
|
*x = BindSocialResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[17]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindSocialResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindSocialResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 BindSocialResp.ProtoReflect.Descriptor instead.
|
||
|
func (*BindSocialResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{17}
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialResp) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindSocialResp) GetSocialProfile() string {
|
||
|
if x != nil {
|
||
|
return x.SocialProfile
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type CreateRoleReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
|
||
|
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
||
|
Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleReq) Reset() {
|
||
|
*x = CreateRoleReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[18]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*CreateRoleReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *CreateRoleReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 CreateRoleReq.ProtoReflect.Descriptor instead.
|
||
|
func (*CreateRoleReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{18}
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleReq) GetCode() string {
|
||
|
if x != nil {
|
||
|
return x.Code
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleReq) GetName() string {
|
||
|
if x != nil {
|
||
|
return x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleReq) GetDesc() string {
|
||
|
if x != nil {
|
||
|
return x.Desc
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type CreateRoleResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Role *Role `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleResp) Reset() {
|
||
|
*x = CreateRoleResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[19]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*CreateRoleResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *CreateRoleResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 CreateRoleResp.ProtoReflect.Descriptor instead.
|
||
|
func (*CreateRoleResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{19}
|
||
|
}
|
||
|
|
||
|
func (x *CreateRoleResp) GetRole() *Role {
|
||
|
if x != nil {
|
||
|
return x.Role
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type UpdateRoleReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
||
|
//
|
||
|
Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
|
||
|
Desc *string `protobuf:"bytes,3,opt,name=desc,proto3,oneof" json:"desc,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleReq) Reset() {
|
||
|
*x = UpdateRoleReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[20]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UpdateRoleReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *UpdateRoleReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_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 UpdateRoleReq.ProtoReflect.Descriptor instead.
|
||
|
func (*UpdateRoleReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{20}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleReq) GetId() int64 {
|
||
|
if x != nil {
|
||
|
return x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleReq) GetName() string {
|
||
|
if x != nil && x.Name != nil {
|
||
|
return *x.Name
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleReq) GetDesc() string {
|
||
|
if x != nil && x.Desc != nil {
|
||
|
return *x.Desc
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type UpdateRoleResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Role *Role `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleResp) Reset() {
|
||
|
*x = UpdateRoleResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[21]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*UpdateRoleResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *UpdateRoleResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[21]
|
||
|
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 UpdateRoleResp.ProtoReflect.Descriptor instead.
|
||
|
func (*UpdateRoleResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{21}
|
||
|
}
|
||
|
|
||
|
func (x *UpdateRoleResp) GetRole() *Role {
|
||
|
if x != nil {
|
||
|
return x.Role
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DeleteRoleReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleReq) Reset() {
|
||
|
*x = DeleteRoleReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[22]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*DeleteRoleReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *DeleteRoleReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[22]
|
||
|
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 DeleteRoleReq.ProtoReflect.Descriptor instead.
|
||
|
func (*DeleteRoleReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{22}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleReq) GetIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.Ids
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type DeleteRoleResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleResp) Reset() {
|
||
|
*x = DeleteRoleResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[23]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*DeleteRoleResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *DeleteRoleResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[23]
|
||
|
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 DeleteRoleResp.ProtoReflect.Descriptor instead.
|
||
|
func (*DeleteRoleResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{23}
|
||
|
}
|
||
|
|
||
|
func (x *DeleteRoleResp) GetIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.Ids
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type GetRoleReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Id *int64 `protobuf:"varint,1,opt,name=id,proto3,oneof" json:"id,omitempty"`
|
||
|
Code *string `protobuf:"bytes,2,opt,name=code,proto3,oneof" json:"code,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleReq) Reset() {
|
||
|
*x = GetRoleReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[24]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetRoleReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetRoleReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[24]
|
||
|
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 GetRoleReq.ProtoReflect.Descriptor instead.
|
||
|
func (*GetRoleReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{24}
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleReq) GetId() int64 {
|
||
|
if x != nil && x.Id != nil {
|
||
|
return *x.Id
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleReq) GetCode() string {
|
||
|
if x != nil && x.Code != nil {
|
||
|
return *x.Code
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
type GetRoleResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
Role *Role `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleResp) Reset() {
|
||
|
*x = GetRoleResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[25]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*GetRoleResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *GetRoleResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[25]
|
||
|
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 GetRoleResp.ProtoReflect.Descriptor instead.
|
||
|
func (*GetRoleResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{25}
|
||
|
}
|
||
|
|
||
|
func (x *GetRoleResp) GetRole() *Role {
|
||
|
if x != nil {
|
||
|
return x.Role
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type BindUserReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
RoleId int64 `protobuf:"varint,1,opt,name=roleId,proto3" json:"roleId,omitempty"`
|
||
|
UserIds []int64 `protobuf:"varint,2,rep,packed,name=userIds,proto3" json:"userIds,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindUserReq) Reset() {
|
||
|
*x = BindUserReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[26]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindUserReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindUserReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindUserReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[26]
|
||
|
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 BindUserReq.ProtoReflect.Descriptor instead.
|
||
|
func (*BindUserReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{26}
|
||
|
}
|
||
|
|
||
|
func (x *BindUserReq) GetRoleId() int64 {
|
||
|
if x != nil {
|
||
|
return x.RoleId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindUserReq) GetUserIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.UserIds
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type BindUserResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
RoleId int64 `protobuf:"varint,1,opt,name=roleId,proto3" json:"roleId,omitempty"`
|
||
|
UserId []int64 `protobuf:"varint,2,rep,packed,name=userId,proto3" json:"userId,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindUserResp) Reset() {
|
||
|
*x = BindUserResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[27]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindUserResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindUserResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindUserResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[27]
|
||
|
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 BindUserResp.ProtoReflect.Descriptor instead.
|
||
|
func (*BindUserResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{27}
|
||
|
}
|
||
|
|
||
|
func (x *BindUserResp) GetRoleId() int64 {
|
||
|
if x != nil {
|
||
|
return x.RoleId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindUserResp) GetUserId() []int64 {
|
||
|
if x != nil {
|
||
|
return x.UserId
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type BindRoleReq struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
UserId int64 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
||
|
RoleIds []int64 `protobuf:"varint,2,rep,packed,name=roleIds,proto3" json:"roleIds,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleReq) Reset() {
|
||
|
*x = BindRoleReq{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[28]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleReq) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindRoleReq) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindRoleReq) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[28]
|
||
|
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 BindRoleReq.ProtoReflect.Descriptor instead.
|
||
|
func (*BindRoleReq) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{28}
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleReq) GetUserId() int64 {
|
||
|
if x != nil {
|
||
|
return x.UserId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleReq) GetRoleIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.RoleIds
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type BindRoleResp struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
UserId int64 `protobuf:"varint,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
||
|
RoleIds []int64 `protobuf:"varint,2,rep,packed,name=roleIds,proto3" json:"roleIds,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleResp) Reset() {
|
||
|
*x = BindRoleResp{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[29]
|
||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
|
ms.StoreMessageInfo(mi)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleResp) String() string {
|
||
|
return protoimpl.X.MessageStringOf(x)
|
||
|
}
|
||
|
|
||
|
func (*BindRoleResp) ProtoMessage() {}
|
||
|
|
||
|
func (x *BindRoleResp) ProtoReflect() protoreflect.Message {
|
||
|
mi := &file_rpc_pb_user_center_proto_msgTypes[29]
|
||
|
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 BindRoleResp.ProtoReflect.Descriptor instead.
|
||
|
func (*BindRoleResp) Descriptor() ([]byte, []int) {
|
||
|
return file_rpc_pb_user_center_proto_rawDescGZIP(), []int{29}
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleResp) GetUserId() int64 {
|
||
|
if x != nil {
|
||
|
return x.UserId
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
func (x *BindRoleResp) GetRoleIds() []int64 {
|
||
|
if x != nil {
|
||
|
return x.RoleIds
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
var File_rpc_pb_user_center_proto protoreflect.FileDescriptor
|
||
|
|
||
|
var file_rpc_pb_user_center_proto_rawDesc = []byte{
|
||
|
0x0a, 0x18, 0x72, 0x70, 0x63, 0x2f, 0x70, 0x62, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x63, 0x65,
|
||
|
0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0xcc,
|
||
|
0x02, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
||
|
0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62,
|
||
|
0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
|
||
|
0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x70,
|
||
|
0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
|
||
|
0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
||
|
0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e,
|
||
|
0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
|
||
|
0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
|
||
|
0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12,
|
||
|
0x1c, 0x0a, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
|
||
|
0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
|
||
|
0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b,
|
||
|
0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75,
|
||
|
0x6e, 0x74, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e,
|
||
|
0x74, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0d,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x22, 0xcf, 0x01,
|
||
|
0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72,
|
||
|
0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||
|
0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73,
|
||
|
0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
||
|
0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x6c,
|
||
|
0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x49, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
|
||
|
0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x49, 0x70, 0x12, 0x28, 0x0a,
|
||
|
0x0f, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65,
|
||
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69,
|
||
|
0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c,
|
||
|
0x6f, 0x67, 0x69, 0x6e, 0x55, 0x41, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61,
|
||
|
0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x41, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75,
|
||
|
0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22,
|
||
|
0x52, 0x0a, 0x04, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
||
|
0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
|
||
|
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
|
||
|
0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
|
||
|
0x65, 0x73, 0x63, 0x22, 0x0e, 0x0a, 0x0c, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x4d, 0x65, 0x73, 0x73,
|
||
|
0x61, 0x67, 0x65, 0x22, 0x21, 0x0a, 0x0d, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x4d, 0x65, 0x73,
|
||
|
0x73, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||
|
0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0xac, 0x04, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74,
|
||
|
0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a,
|
||
|
0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48,
|
||
|
0x01, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x25,
|
||
|
0x0a, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20,
|
||
|
0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62,
|
||
|
0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x88, 0x01, 0x01,
|
||
|
0x12, 0x1f, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x05, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x48, 0x04, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x88, 0x01,
|
||
|
0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48,
|
||
|
0x05, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08, 0x6e, 0x69,
|
||
|
0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x08,
|
||
|
0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1b, 0x0a, 0x06, 0x67,
|
||
|
0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x06, 0x67,
|
||
|
0x65, 0x6e, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x21, 0x0a, 0x09, 0x62, 0x69, 0x72, 0x74,
|
||
|
0x68, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x08, 0x52, 0x09, 0x62,
|
||
|
0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x61,
|
||
|
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x09, 0x52, 0x07,
|
||
|
0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x61, 0x67,
|
||
|
0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0a, 0x52, 0x03, 0x61, 0x67, 0x65, 0x88, 0x01,
|
||
|
0x01, 0x12, 0x1d, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x48, 0x0b, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x88, 0x01, 0x01,
|
||
|
0x12, 0x1d, 0x0a, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
|
||
|
0x09, 0x48, 0x0c, 0x52, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x88, 0x01, 0x01, 0x42,
|
||
|
0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d,
|
||
|
0x62, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x42, 0x0b, 0x0a,
|
||
|
0x09, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
|
||
|
0x42, 0x09, 0x0a, 0x07, 0x5f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f,
|
||
|
0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x61, 0x64,
|
||
|
0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x61, 0x67, 0x65, 0x42, 0x0a, 0x0a,
|
||
|
0x08, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x70, 0x69,
|
||
|
0x63, 0x74, 0x75, 0x72, 0x65, 0x22, 0x2e, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55,
|
||
|
0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18,
|
||
|
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52,
|
||
|
0x04, 0x75, 0x73, 0x65, 0x72, 0x22, 0xe8, 0x02, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
|
||
|
0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
|
||
|
0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
||
|
0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01,
|
||
|
0x12, 0x1f, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x48, 0x01, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01,
|
||
|
0x01, 0x12, 0x1b, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||
|
0x03, 0x48, 0x02, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x21,
|
||
|
0x0a, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
|
||
|
0x09, 0x48, 0x03, 0x52, 0x09, 0x62, 0x69, 0x72, 0x74, 0x68, 0x64, 0x61, 0x74, 0x65, 0x88, 0x01,
|
||
|
0x01, 0x12, 0x1d, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x48, 0x04, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x88, 0x01, 0x01,
|
||
|
0x12, 0x15, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52,
|
||
|
0x03, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
||
|
0x72, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x06, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e,
|
||
|
0x74, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
|
||
|
0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75,
|
||
|
0x72, 0x65, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x0b,
|
||
|
0x0a, 0x09, 0x5f, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f,
|
||
|
0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x62, 0x69, 0x72, 0x74, 0x68,
|
||
|
0x64, 0x61, 0x74, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
|
||
|
0x42, 0x06, 0x0a, 0x04, 0x5f, 0x61, 0x67, 0x65, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x63, 0x6f, 0x75,
|
||
|
0x6e, 0x74, 0x72, 0x79, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
|
||
|
0x22, 0x2e, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
|
||
|
0x73, 0x70, 0x12, 0x1c, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
||
|
0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72,
|
||
|
0x22, 0x21, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
|
||
|
0x71, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03,
|
||
|
0x69, 0x64, 0x73, 0x22, 0x22, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65,
|
||
|
0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03,
|
||
|
0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x55,
|
||
|
0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
||
|
0x28, 0x03, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08, 0x75,
|
||
|
0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52,
|
||
|
0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b,
|
||
|
0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||
|
0x09, 0x48, 0x02, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
||
|
0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01,
|
||
|
0x28, 0x09, 0x48, 0x03, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x88, 0x01, 0x01, 0x42, 0x05,
|
||
|
0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,
|
||
|
0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62,
|
||
|
0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22, 0x44, 0x0a, 0x12,
|
||
|
0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x52,
|
||
|
0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x12,
|
||
|
0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x75,
|
||
|
0x69, 0x64, 0x22, 0x2b, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73,
|
||
|
0x70, 0x12, 0x1c, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
||
|
0x08, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x22,
|
||
|
0x9a, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x63,
|
||
|
0x6f, 0x72, 0x64, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
|
||
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20,
|
||
|
0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x49, 0x70, 0x18, 0x02, 0x20,
|
||
|
0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x49, 0x70,
|
||
|
0x12, 0x28, 0x0a, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x44, 0x65, 0x76,
|
||
|
0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x4c,
|
||
|
0x6f, 0x67, 0x69, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61,
|
||
|
0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x41, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||
|
0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x55, 0x41, 0x22, 0xac, 0x01, 0x0a,
|
||
|
0x10, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
||
|
0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
|
||
|
0x64, 0x12, 0x25, 0x0a, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72,
|
||
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e,
|
||
|
0x75, 0x6d, 0x62, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69,
|
||
|
0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c,
|
||
|
0x88, 0x01, 0x01, 0x12, 0x1f, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18,
|
||
|
0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
||
|
0x65, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x4e, 0x75,
|
||
|
0x6d, 0x62, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x42, 0x0b,
|
||
|
0x0a, 0x09, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x55, 0x0a, 0x0d, 0x42,
|
||
|
0x69, 0x6e, 0x64, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02,
|
||
|
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08,
|
||
|
0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
||
|
0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x66,
|
||
|
0x69, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x72, 0x6f, 0x66, 0x69,
|
||
|
0x6c, 0x65, 0x22, 0x46, 0x0a, 0x0e, 0x42, 0x69, 0x6e, 0x64, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c,
|
||
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
|
||
|
0x52, 0x02, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x72,
|
||
|
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x6f, 0x63,
|
||
|
0x69, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x4b, 0x0a, 0x0d, 0x43, 0x72,
|
||
|
0x65, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63,
|
||
|
0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
|
||
|
0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||
|
0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x22, 0x2e, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
||
|
0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c, 0x0a, 0x04, 0x72, 0x6f, 0x6c,
|
||
|
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x6f, 0x6c,
|
||
|
0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x22, 0x63, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||
|
0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
|
||
|
0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
|
||
|
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01,
|
||
|
0x01, 0x12, 0x17, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
|
||
|
0x01, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e,
|
||
|
0x61, 0x6d, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x22, 0x2e, 0x0a, 0x0e,
|
||
|
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c,
|
||
|
0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70,
|
||
|
0x62, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x22, 0x21, 0x0a, 0x0d,
|
||
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a,
|
||
|
0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22,
|
||
|
0x22, 0x0a, 0x0e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73,
|
||
|
0x70, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03,
|
||
|
0x69, 0x64, 0x73, 0x22, 0x4a, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65,
|
||
|
0x71, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52,
|
||
|
0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02,
|
||
|
0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x42,
|
||
|
0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22,
|
||
|
0x2b, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c,
|
||
|
0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70,
|
||
|
0x62, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x22, 0x3f, 0x0a, 0x0b,
|
||
|
0x42, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x72,
|
||
|
0x6f, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6c,
|
||
|
0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x02,
|
||
|
0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x3e, 0x0a,
|
||
|
0x0c, 0x42, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a,
|
||
|
0x06, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72,
|
||
|
0x6f, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
|
||
|
0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x3f, 0x0a,
|
||
|
0x0b, 0x42, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06,
|
||
|
0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73,
|
||
|
0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x18,
|
||
|
0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x22, 0x40,
|
||
|
0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x16,
|
||
|
0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
|
||
|
0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64,
|
||
|
0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73,
|
||
|
0x32, 0xea, 0x05, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12,
|
||
|
0x33, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x11, 0x2e,
|
||
|
0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71,
|
||
|
0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
|
||
|
0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
|
||
|
0x65, 0x72, 0x12, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
|
||
|
0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||
|
0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0a, 0x64, 0x65, 0x6c,
|
||
|
0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c,
|
||
|
0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e,
|
||
|
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2a,
|
||
|
0x0a, 0x07, 0x67, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x47,
|
||
|
0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x47,
|
||
|
0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3a, 0x0a, 0x0f, 0x67, 0x65,
|
||
|
0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x12, 0x16, 0x2e,
|
||
|
0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x53, 0x6f, 0x63, 0x69,
|
||
|
0x61, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73,
|
||
|
0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x0d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79,
|
||
|
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x4d, 0x6f, 0x64,
|
||
|
0x69, 0x66, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e,
|
||
|
0x70, 0x62, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73,
|
||
|
0x70, 0x12, 0x33, 0x0a, 0x0a, 0x62, 0x69, 0x6e, 0x64, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x12,
|
||
|
0x11, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x6c, 0x52,
|
||
|
0x65, 0x71, 0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x53, 0x6f, 0x63, 0x69,
|
||
|
0x61, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f,
|
||
|
0x67, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x70, 0x62, 0x2e, 0x55,
|
||
|
0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x65,
|
||
|
0x71, 0x1a, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x4d, 0x65, 0x73,
|
||
|
0x73, 0x61, 0x67, 0x65, 0x12, 0x33, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f,
|
||
|
0x6c, 0x65, 0x12, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x6f,
|
||
|
0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
||
|
0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33, 0x0a, 0x0a, 0x75, 0x70, 0x64,
|
||
|
0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x11, 0x2e, 0x70, 0x62, 0x2e, 0x55, 0x70, 0x64,
|
||
|
0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x70, 0x62, 0x2e,
|
||
|
0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x33,
|
||
|
0x0a, 0x0a, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x11, 0x2e, 0x70,
|
||
|
0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a,
|
||
|
0x12, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x52, 0x6f, 0x6c, 0x65, 0x52,
|
||
|
0x65, 0x73, 0x70, 0x12, 0x2a, 0x0a, 0x07, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x0e,
|
||
|
0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f,
|
||
|
0x2e, 0x70, 0x62, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12,
|
||
|
0x2d, 0x0a, 0x08, 0x62, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x0f, 0x2e, 0x70, 0x62,
|
||
|
0x2e, 0x42, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x70,
|
||
|
0x62, 0x2e, 0x42, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d,
|
||
|
0x0a, 0x08, 0x62, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0f, 0x2e, 0x70, 0x62, 0x2e,
|
||
|
0x42, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x70, 0x62,
|
||
|
0x2e, 0x42, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a,
|
||
|
0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
file_rpc_pb_user_center_proto_rawDescOnce sync.Once
|
||
|
file_rpc_pb_user_center_proto_rawDescData = file_rpc_pb_user_center_proto_rawDesc
|
||
|
)
|
||
|
|
||
|
func file_rpc_pb_user_center_proto_rawDescGZIP() []byte {
|
||
|
file_rpc_pb_user_center_proto_rawDescOnce.Do(func() {
|
||
|
file_rpc_pb_user_center_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_pb_user_center_proto_rawDescData)
|
||
|
})
|
||
|
return file_rpc_pb_user_center_proto_rawDescData
|
||
|
}
|
||
|
|
||
|
var file_rpc_pb_user_center_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
|
||
|
var file_rpc_pb_user_center_proto_goTypes = []interface{}{
|
||
|
(*User)(nil), // 0: pb.User
|
||
|
(*UserLoginRecord)(nil), // 1: pb.UserLoginRecord
|
||
|
(*Role)(nil), // 2: pb.Role
|
||
|
(*EmptyMessage)(nil), // 3: pb.EmptyMessage
|
||
|
(*SimpleMessage)(nil), // 4: pb.SimpleMessage
|
||
|
(*CreateUserReq)(nil), // 5: pb.CreateUserReq
|
||
|
(*CreateUserResp)(nil), // 6: pb.CreateUserResp
|
||
|
(*UpdateUserReq)(nil), // 7: pb.UpdateUserReq
|
||
|
(*UpdateUserResp)(nil), // 8: pb.UpdateUserResp
|
||
|
(*DeleteUserReq)(nil), // 9: pb.DeleteUserReq
|
||
|
(*DeleteUserResp)(nil), // 10: pb.DeleteUserResp
|
||
|
(*GetUserReq)(nil), // 11: pb.GetUserReq
|
||
|
(*GetUserBySocialReq)(nil), // 12: pb.GetUserBySocialReq
|
||
|
(*GetUserResp)(nil), // 13: pb.GetUserResp
|
||
|
(*UserLoginRecordReq)(nil), // 14: pb.UserLoginRecordReq
|
||
|
(*ModifyAccountReq)(nil), // 15: pb.ModifyAccountReq
|
||
|
(*BindSocialReq)(nil), // 16: pb.BindSocialReq
|
||
|
(*BindSocialResp)(nil), // 17: pb.BindSocialResp
|
||
|
(*CreateRoleReq)(nil), // 18: pb.CreateRoleReq
|
||
|
(*CreateRoleResp)(nil), // 19: pb.CreateRoleResp
|
||
|
(*UpdateRoleReq)(nil), // 20: pb.UpdateRoleReq
|
||
|
(*UpdateRoleResp)(nil), // 21: pb.UpdateRoleResp
|
||
|
(*DeleteRoleReq)(nil), // 22: pb.DeleteRoleReq
|
||
|
(*DeleteRoleResp)(nil), // 23: pb.DeleteRoleResp
|
||
|
(*GetRoleReq)(nil), // 24: pb.GetRoleReq
|
||
|
(*GetRoleResp)(nil), // 25: pb.GetRoleResp
|
||
|
(*BindUserReq)(nil), // 26: pb.BindUserReq
|
||
|
(*BindUserResp)(nil), // 27: pb.BindUserResp
|
||
|
(*BindRoleReq)(nil), // 28: pb.BindRoleReq
|
||
|
(*BindRoleResp)(nil), // 29: pb.BindRoleResp
|
||
|
}
|
||
|
var file_rpc_pb_user_center_proto_depIdxs = []int32{
|
||
|
0, // 0: pb.CreateUserResp.user:type_name -> pb.User
|
||
|
0, // 1: pb.UpdateUserResp.user:type_name -> pb.User
|
||
|
0, // 2: pb.GetUserResp.user:type_name -> pb.User
|
||
|
2, // 3: pb.CreateRoleResp.role:type_name -> pb.Role
|
||
|
2, // 4: pb.UpdateRoleResp.role:type_name -> pb.Role
|
||
|
2, // 5: pb.GetRoleResp.role:type_name -> pb.Role
|
||
|
5, // 6: pb.userCenter.createUser:input_type -> pb.CreateUserReq
|
||
|
7, // 7: pb.userCenter.updateUser:input_type -> pb.UpdateUserReq
|
||
|
9, // 8: pb.userCenter.deleteUser:input_type -> pb.DeleteUserReq
|
||
|
11, // 9: pb.userCenter.getUser:input_type -> pb.GetUserReq
|
||
|
12, // 10: pb.userCenter.getUserBySocial:input_type -> pb.GetUserBySocialReq
|
||
|
15, // 11: pb.userCenter.modifyAccount:input_type -> pb.ModifyAccountReq
|
||
|
16, // 12: pb.userCenter.bindSocial:input_type -> pb.BindSocialReq
|
||
|
14, // 13: pb.userCenter.userLoginRecord:input_type -> pb.UserLoginRecordReq
|
||
|
18, // 14: pb.userCenter.createRole:input_type -> pb.CreateRoleReq
|
||
|
20, // 15: pb.userCenter.updateRole:input_type -> pb.UpdateRoleReq
|
||
|
22, // 16: pb.userCenter.deleteRole:input_type -> pb.DeleteRoleReq
|
||
|
24, // 17: pb.userCenter.getRole:input_type -> pb.GetRoleReq
|
||
|
28, // 18: pb.userCenter.bindRole:input_type -> pb.BindRoleReq
|
||
|
26, // 19: pb.userCenter.bindUser:input_type -> pb.BindUserReq
|
||
|
6, // 20: pb.userCenter.createUser:output_type -> pb.CreateUserResp
|
||
|
8, // 21: pb.userCenter.updateUser:output_type -> pb.UpdateUserResp
|
||
|
10, // 22: pb.userCenter.deleteUser:output_type -> pb.DeleteUserResp
|
||
|
13, // 23: pb.userCenter.getUser:output_type -> pb.GetUserResp
|
||
|
13, // 24: pb.userCenter.getUserBySocial:output_type -> pb.GetUserResp
|
||
|
8, // 25: pb.userCenter.modifyAccount:output_type -> pb.UpdateUserResp
|
||
|
17, // 26: pb.userCenter.bindSocial:output_type -> pb.BindSocialResp
|
||
|
4, // 27: pb.userCenter.userLoginRecord:output_type -> pb.SimpleMessage
|
||
|
19, // 28: pb.userCenter.createRole:output_type -> pb.CreateRoleResp
|
||
|
21, // 29: pb.userCenter.updateRole:output_type -> pb.UpdateRoleResp
|
||
|
23, // 30: pb.userCenter.deleteRole:output_type -> pb.DeleteRoleResp
|
||
|
25, // 31: pb.userCenter.getRole:output_type -> pb.GetRoleResp
|
||
|
29, // 32: pb.userCenter.bindRole:output_type -> pb.BindRoleResp
|
||
|
27, // 33: pb.userCenter.bindUser:output_type -> pb.BindUserResp
|
||
|
20, // [20:34] is the sub-list for method output_type
|
||
|
6, // [6:20] is the sub-list for method input_type
|
||
|
6, // [6:6] is the sub-list for extension type_name
|
||
|
6, // [6:6] is the sub-list for extension extendee
|
||
|
0, // [0:6] is the sub-list for field type_name
|
||
|
}
|
||
|
|
||
|
func init() { file_rpc_pb_user_center_proto_init() }
|
||
|
func file_rpc_pb_user_center_proto_init() {
|
||
|
if File_rpc_pb_user_center_proto != nil {
|
||
|
return
|
||
|
}
|
||
|
if !protoimpl.UnsafeEnabled {
|
||
|
file_rpc_pb_user_center_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*User); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UserLoginRecord); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*Role); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*EmptyMessage); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*SimpleMessage); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*CreateUserReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*CreateUserResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UpdateUserReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UpdateUserResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*DeleteUserReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*DeleteUserResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*GetUserReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*GetUserBySocialReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*GetUserResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UserLoginRecordReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*ModifyAccountReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindSocialReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindSocialResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*CreateRoleReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*CreateRoleResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UpdateRoleReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*UpdateRoleResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*DeleteRoleReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*DeleteRoleResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*GetRoleReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*GetRoleResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindUserReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindUserResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindRoleReq); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
|
||
|
switch v := v.(*BindRoleResp); i {
|
||
|
case 0:
|
||
|
return &v.state
|
||
|
case 1:
|
||
|
return &v.sizeCache
|
||
|
case 2:
|
||
|
return &v.unknownFields
|
||
|
default:
|
||
|
return nil
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[5].OneofWrappers = []interface{}{}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[7].OneofWrappers = []interface{}{}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[11].OneofWrappers = []interface{}{}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[15].OneofWrappers = []interface{}{}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[20].OneofWrappers = []interface{}{}
|
||
|
file_rpc_pb_user_center_proto_msgTypes[24].OneofWrappers = []interface{}{}
|
||
|
type x struct{}
|
||
|
out := protoimpl.TypeBuilder{
|
||
|
File: protoimpl.DescBuilder{
|
||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
|
RawDescriptor: file_rpc_pb_user_center_proto_rawDesc,
|
||
|
NumEnums: 0,
|
||
|
NumMessages: 30,
|
||
|
NumExtensions: 0,
|
||
|
NumServices: 1,
|
||
|
},
|
||
|
GoTypes: file_rpc_pb_user_center_proto_goTypes,
|
||
|
DependencyIndexes: file_rpc_pb_user_center_proto_depIdxs,
|
||
|
MessageInfos: file_rpc_pb_user_center_proto_msgTypes,
|
||
|
}.Build()
|
||
|
File_rpc_pb_user_center_proto = out.File
|
||
|
file_rpc_pb_user_center_proto_rawDesc = nil
|
||
|
file_rpc_pb_user_center_proto_goTypes = nil
|
||
|
file_rpc_pb_user_center_proto_depIdxs = nil
|
||
|
}
|