cloud_user_center

package
v1.2.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 9, 2023 License: MIT Imports: 16 Imported by: 0

Documentation

Overview

Package cloud_user_center is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var CloudUserCenter_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "cloud_user_center.CloudUserCenter",
	HandlerType: (*CloudUserCenterServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "UserInfoCreate",
			Handler:    _CloudUserCenter_UserInfoCreate_Handler,
		},
		{
			MethodName: "UserInfoAuth",
			Handler:    _CloudUserCenter_UserInfoAuth_Handler,
		},
		{
			MethodName: "UserInfoUpdate",
			Handler:    _CloudUserCenter_UserInfoUpdate_Handler,
		},
		{
			MethodName: "UserInfoDelete",
			Handler:    _CloudUserCenter_UserInfoDelete_Handler,
		},
		{
			MethodName: "UserInfoGet",
			Handler:    _CloudUserCenter_UserInfoGet_Handler,
		},
		{
			MethodName: "UserInfoList",
			Handler:    _CloudUserCenter_UserInfoList_Handler,
		},
		{
			MethodName: "UserInfoGetByName",
			Handler:    _CloudUserCenter_UserInfoGetByName_Handler,
		},
		{
			MethodName: "UserInfoSearch",
			Handler:    _CloudUserCenter_UserInfoSearch_Handler,
		},
		{
			MethodName: "UserInfoDeleteHidden",
			Handler:    _CloudUserCenter_UserInfoDeleteHidden_Handler,
		},
		{
			MethodName: "LoginStateCheck",
			Handler:    _CloudUserCenter_LoginStateCheck_Handler,
		},
		{
			MethodName: "UserTokenGet",
			Handler:    _CloudUserCenter_UserTokenGet_Handler,
		},
		{
			MethodName: "UserMessageCreate",
			Handler:    _CloudUserCenter_UserMessageCreate_Handler,
		},
		{
			MethodName: "MUserMessageCreate",
			Handler:    _CloudUserCenter_MUserMessageCreate_Handler,
		},
		{
			MethodName: "UserMessageList",
			Handler:    _CloudUserCenter_UserMessageList_Handler,
		},
		{
			MethodName: "UserMessageGet",
			Handler:    _CloudUserCenter_UserMessageGet_Handler,
		},
		{
			MethodName: "UserMessageUpdate",
			Handler:    _CloudUserCenter_UserMessageUpdate_Handler,
		},
		{
			MethodName: "UserMessageDelete",
			Handler:    _CloudUserCenter_UserMessageDelete_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "service.proto",
}

CloudUserCenter_ServiceDesc is the grpc.ServiceDesc for CloudUserCenter service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_service_proto protoreflect.FileDescriptor
View Source
var File_user_center_base_proto protoreflect.FileDescriptor
View Source
var File_user_center_proto protoreflect.FileDescriptor

Functions

func RegisterCloudUserCenterHandler added in v1.0.4

func RegisterCloudUserCenterHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterCloudUserCenterHandler registers the http handlers for service CloudUserCenter to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterCloudUserCenterHandlerClient added in v1.0.4

func RegisterCloudUserCenterHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CloudUserCenterClient) error

RegisterCloudUserCenterHandlerClient registers the http handlers for service CloudUserCenter to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "CloudUserCenterClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "CloudUserCenterClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "CloudUserCenterClient" to call the correct interceptors.

func RegisterCloudUserCenterHandlerFromEndpoint added in v1.0.4

func RegisterCloudUserCenterHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterCloudUserCenterHandlerFromEndpoint is same as RegisterCloudUserCenterHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterCloudUserCenterHandlerServer added in v1.0.4

func RegisterCloudUserCenterHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CloudUserCenterServer) error

RegisterCloudUserCenterHandlerServer registers the http handlers for service CloudUserCenter to "mux". UnaryRPC :call CloudUserCenterServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterCloudUserCenterHandlerFromEndpoint instead.

func RegisterCloudUserCenterServer added in v1.0.4

func RegisterCloudUserCenterServer(s grpc.ServiceRegistrar, srv CloudUserCenterServer)

Types

type BaseUserInfo added in v1.0.7

type BaseUserInfo struct {
	UserId          int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name            string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Email           string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	InstitutionName string `protobuf:"bytes,4,opt,name=institution_name,json=institutionName,proto3" json:"institution_name,omitempty"`
	PhoneNumber     string `protobuf:"bytes,5,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
	Grade           string `protobuf:"bytes,6,opt,name=grade,proto3" json:"grade,omitempty"`
	Area            string `protobuf:"bytes,7,opt,name=area,proto3" json:"area,omitempty"`
	VncPort         int32  `protobuf:"varint,8,opt,name=vnc_port,json=vncPort,proto3" json:"vnc_port,omitempty"`
	UserHost        string `protobuf:"bytes,9,opt,name=user_host,json=userHost,proto3" json:"user_host,omitempty"`
	PasswordLevel   int32  `protobuf:"varint,10,opt,name=password_level,json=passwordLevel,proto3" json:"password_level,omitempty"`
	DiskCapacity    int32  `protobuf:"varint,11,opt,name=disk_capacity,json=diskCapacity,proto3" json:"disk_capacity,omitempty"`
	// contains filtered or unexported fields
}

func (*BaseUserInfo) Descriptor deprecated added in v1.0.7

func (*BaseUserInfo) Descriptor() ([]byte, []int)

Deprecated: Use BaseUserInfo.ProtoReflect.Descriptor instead.

func (*BaseUserInfo) GetArea added in v1.0.7

func (x *BaseUserInfo) GetArea() string

func (*BaseUserInfo) GetDiskCapacity added in v1.0.15

func (x *BaseUserInfo) GetDiskCapacity() int32

func (*BaseUserInfo) GetEmail added in v1.0.7

func (x *BaseUserInfo) GetEmail() string

func (*BaseUserInfo) GetGrade added in v1.0.7

func (x *BaseUserInfo) GetGrade() string

func (*BaseUserInfo) GetInstitutionName added in v1.0.7

func (x *BaseUserInfo) GetInstitutionName() string

func (*BaseUserInfo) GetName added in v1.0.7

func (x *BaseUserInfo) GetName() string

func (*BaseUserInfo) GetPasswordLevel added in v1.0.7

func (x *BaseUserInfo) GetPasswordLevel() int32

func (*BaseUserInfo) GetPhoneNumber added in v1.0.7

func (x *BaseUserInfo) GetPhoneNumber() string

func (*BaseUserInfo) GetUserHost added in v1.0.7

func (x *BaseUserInfo) GetUserHost() string

func (*BaseUserInfo) GetUserId added in v1.0.7

func (x *BaseUserInfo) GetUserId() int64

func (*BaseUserInfo) GetVncPort added in v1.0.7

func (x *BaseUserInfo) GetVncPort() int32

func (*BaseUserInfo) ProtoMessage added in v1.0.7

func (*BaseUserInfo) ProtoMessage()

func (*BaseUserInfo) ProtoReflect added in v1.0.7

func (x *BaseUserInfo) ProtoReflect() protoreflect.Message

func (*BaseUserInfo) Reset added in v1.0.7

func (x *BaseUserInfo) Reset()

func (*BaseUserInfo) String added in v1.0.7

func (x *BaseUserInfo) String() string

type CloudUserCenterClient added in v1.0.4

type CloudUserCenterClient interface {
	UserInfoCreate(ctx context.Context, in *UserInfoCreateRequest, opts ...grpc.CallOption) (*UserInfoCreateResponse, error)
	UserInfoAuth(ctx context.Context, in *UserInfoAuthRequest, opts ...grpc.CallOption) (*UserInfoAuthResponse, error)
	UserInfoUpdate(ctx context.Context, in *UserInfoUpdateRequest, opts ...grpc.CallOption) (*UserInfoUpdateResponse, error)
	UserInfoDelete(ctx context.Context, in *UserInfoDeleteRequest, opts ...grpc.CallOption) (*UserInfoDeleteResponse, error)
	UserInfoGet(ctx context.Context, in *UserInfoGetRequest, opts ...grpc.CallOption) (*UserInfoGetResponse, error)
	UserInfoList(ctx context.Context, in *UserInfoListRequest, opts ...grpc.CallOption) (*MUserInfoListResponse, error)
	UserInfoGetByName(ctx context.Context, in *UserInfoGetByNameRequest, opts ...grpc.CallOption) (*UserInfoGetByNameResponse, error)
	UserInfoSearch(ctx context.Context, in *UserInfoSearchRequest, opts ...grpc.CallOption) (*UserInfoSearchResponse, error)
	UserInfoDeleteHidden(ctx context.Context, in *UserInfoDeleteHiddenRequest, opts ...grpc.CallOption) (*UserInfoDeleteHiddenResponse, error)
	LoginStateCheck(ctx context.Context, in *LoginStateCheckRequest, opts ...grpc.CallOption) (*LoginStateCheckResponse, error)
	UserTokenGet(ctx context.Context, in *UserTokenGetRequest, opts ...grpc.CallOption) (*UserTokenGetResponse, error)
	UserMessageCreate(ctx context.Context, in *UserMessageCreateRequest, opts ...grpc.CallOption) (*UserMessageCreateResponse, error)
	MUserMessageCreate(ctx context.Context, in *MUserMessageCreateRequest, opts ...grpc.CallOption) (*MUserMessageCreateResponse, error)
	UserMessageList(ctx context.Context, in *UserMessageListRequest, opts ...grpc.CallOption) (*UserMessageListResponse, error)
	UserMessageGet(ctx context.Context, in *UserMessageGetRequest, opts ...grpc.CallOption) (*UserMessageGetResponse, error)
	UserMessageUpdate(ctx context.Context, in *UserMessageUpdateRequest, opts ...grpc.CallOption) (*UserMessageUpdateResponse, error)
	UserMessageDelete(ctx context.Context, in *UserMessageDeleteRequest, opts ...grpc.CallOption) (*UserMessageDeleteResponse, error)
}

CloudUserCenterClient is the client API for CloudUserCenter service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewCloudUserCenterClient added in v1.0.4

func NewCloudUserCenterClient(cc grpc.ClientConnInterface) CloudUserCenterClient

type CloudUserCenterServer added in v1.0.4

type CloudUserCenterServer interface {
	UserInfoCreate(context.Context, *UserInfoCreateRequest) (*UserInfoCreateResponse, error)
	UserInfoAuth(context.Context, *UserInfoAuthRequest) (*UserInfoAuthResponse, error)
	UserInfoUpdate(context.Context, *UserInfoUpdateRequest) (*UserInfoUpdateResponse, error)
	UserInfoDelete(context.Context, *UserInfoDeleteRequest) (*UserInfoDeleteResponse, error)
	UserInfoGet(context.Context, *UserInfoGetRequest) (*UserInfoGetResponse, error)
	UserInfoList(context.Context, *UserInfoListRequest) (*MUserInfoListResponse, error)
	UserInfoGetByName(context.Context, *UserInfoGetByNameRequest) (*UserInfoGetByNameResponse, error)
	UserInfoSearch(context.Context, *UserInfoSearchRequest) (*UserInfoSearchResponse, error)
	UserInfoDeleteHidden(context.Context, *UserInfoDeleteHiddenRequest) (*UserInfoDeleteHiddenResponse, error)
	LoginStateCheck(context.Context, *LoginStateCheckRequest) (*LoginStateCheckResponse, error)
	UserTokenGet(context.Context, *UserTokenGetRequest) (*UserTokenGetResponse, error)
	UserMessageCreate(context.Context, *UserMessageCreateRequest) (*UserMessageCreateResponse, error)
	MUserMessageCreate(context.Context, *MUserMessageCreateRequest) (*MUserMessageCreateResponse, error)
	UserMessageList(context.Context, *UserMessageListRequest) (*UserMessageListResponse, error)
	UserMessageGet(context.Context, *UserMessageGetRequest) (*UserMessageGetResponse, error)
	UserMessageUpdate(context.Context, *UserMessageUpdateRequest) (*UserMessageUpdateResponse, error)
	UserMessageDelete(context.Context, *UserMessageDeleteRequest) (*UserMessageDeleteResponse, error)
	// contains filtered or unexported methods
}

CloudUserCenterServer is the server API for CloudUserCenter service. All implementations must embed UnimplementedCloudUserCenterServer for forward compatibility

type CreateUserInfo

type CreateUserInfo struct {
	UserId          int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name            string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Email           string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	InstitutionName string `protobuf:"bytes,4,opt,name=institution_name,json=institutionName,proto3" json:"institution_name,omitempty"`
	PhoneNumber     string `protobuf:"bytes,5,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
	Grade           string `protobuf:"bytes,6,opt,name=grade,proto3" json:"grade,omitempty"`
	Area            string `protobuf:"bytes,7,opt,name=area,proto3" json:"area,omitempty"`
	Password        string `protobuf:"bytes,8,opt,name=password,proto3" json:"password,omitempty"`
	PasswordLevel   int32  `protobuf:"varint,9,opt,name=password_level,json=passwordLevel,proto3" json:"password_level,omitempty"`
	VncPort         int32  `protobuf:"varint,10,opt,name=vnc_port,json=vncPort,proto3" json:"vnc_port,omitempty"`
	UserHost        string `protobuf:"bytes,11,opt,name=user_host,json=userHost,proto3" json:"user_host,omitempty"`
	NeedHidden      bool   `protobuf:"varint,12,opt,name=need_hidden,json=needHidden,proto3" json:"need_hidden,omitempty"`
	DiskCapacity    int32  `protobuf:"varint,13,opt,name=disk_capacity,json=diskCapacity,proto3" json:"disk_capacity,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserInfo) Descriptor deprecated

func (*CreateUserInfo) Descriptor() ([]byte, []int)

Deprecated: Use CreateUserInfo.ProtoReflect.Descriptor instead.

func (*CreateUserInfo) GetArea

func (x *CreateUserInfo) GetArea() string

func (*CreateUserInfo) GetDiskCapacity added in v1.0.15

func (x *CreateUserInfo) GetDiskCapacity() int32

func (*CreateUserInfo) GetEmail

func (x *CreateUserInfo) GetEmail() string

func (*CreateUserInfo) GetGrade

func (x *CreateUserInfo) GetGrade() string

func (*CreateUserInfo) GetInstitutionName

func (x *CreateUserInfo) GetInstitutionName() string

func (*CreateUserInfo) GetName

func (x *CreateUserInfo) GetName() string

func (*CreateUserInfo) GetNeedHidden added in v1.0.13

func (x *CreateUserInfo) GetNeedHidden() bool

func (*CreateUserInfo) GetPassword

func (x *CreateUserInfo) GetPassword() string

func (*CreateUserInfo) GetPasswordLevel

func (x *CreateUserInfo) GetPasswordLevel() int32

func (*CreateUserInfo) GetPhoneNumber

func (x *CreateUserInfo) GetPhoneNumber() string

func (*CreateUserInfo) GetUserHost

func (x *CreateUserInfo) GetUserHost() string

func (*CreateUserInfo) GetUserId

func (x *CreateUserInfo) GetUserId() int64

func (*CreateUserInfo) GetVncPort

func (x *CreateUserInfo) GetVncPort() int32

func (*CreateUserInfo) ProtoMessage

func (*CreateUserInfo) ProtoMessage()

func (*CreateUserInfo) ProtoReflect

func (x *CreateUserInfo) ProtoReflect() protoreflect.Message

func (*CreateUserInfo) Reset

func (x *CreateUserInfo) Reset()

func (*CreateUserInfo) String

func (x *CreateUserInfo) String() string

type LoginStateCheckRequest added in v1.0.17

type LoginStateCheckRequest struct {
	UserId int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Token  string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginStateCheckRequest) Descriptor deprecated added in v1.0.17

func (*LoginStateCheckRequest) Descriptor() ([]byte, []int)

Deprecated: Use LoginStateCheckRequest.ProtoReflect.Descriptor instead.

func (*LoginStateCheckRequest) GetToken added in v1.0.17

func (x *LoginStateCheckRequest) GetToken() string

func (*LoginStateCheckRequest) GetUserId added in v1.0.17

func (x *LoginStateCheckRequest) GetUserId() int64

func (*LoginStateCheckRequest) ProtoMessage added in v1.0.17

func (*LoginStateCheckRequest) ProtoMessage()

func (*LoginStateCheckRequest) ProtoReflect added in v1.0.17

func (x *LoginStateCheckRequest) ProtoReflect() protoreflect.Message

func (*LoginStateCheckRequest) Reset added in v1.0.17

func (x *LoginStateCheckRequest) Reset()

func (*LoginStateCheckRequest) String added in v1.0.17

func (x *LoginStateCheckRequest) String() string

type LoginStateCheckResponse added in v1.0.17

type LoginStateCheckResponse struct {
	StatusCode int32                         `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                        `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *LoginStateCheckResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*LoginStateCheckResponse) Descriptor deprecated added in v1.0.17

func (*LoginStateCheckResponse) Descriptor() ([]byte, []int)

Deprecated: Use LoginStateCheckResponse.ProtoReflect.Descriptor instead.

func (*LoginStateCheckResponse) GetData added in v1.0.17

func (*LoginStateCheckResponse) GetMsg added in v1.0.17

func (x *LoginStateCheckResponse) GetMsg() string

func (*LoginStateCheckResponse) GetStatusCode added in v1.0.17

func (x *LoginStateCheckResponse) GetStatusCode() int32

func (*LoginStateCheckResponse) ProtoMessage added in v1.0.17

func (*LoginStateCheckResponse) ProtoMessage()

func (*LoginStateCheckResponse) ProtoReflect added in v1.0.17

func (x *LoginStateCheckResponse) ProtoReflect() protoreflect.Message

func (*LoginStateCheckResponse) Reset added in v1.0.17

func (x *LoginStateCheckResponse) Reset()

func (*LoginStateCheckResponse) String added in v1.0.17

func (x *LoginStateCheckResponse) String() string

type LoginStateCheckResponse_Data added in v1.0.17

type LoginStateCheckResponse_Data struct {
	// contains filtered or unexported fields
}

func (*LoginStateCheckResponse_Data) Descriptor deprecated added in v1.0.17

func (*LoginStateCheckResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use LoginStateCheckResponse_Data.ProtoReflect.Descriptor instead.

func (*LoginStateCheckResponse_Data) ProtoMessage added in v1.0.17

func (*LoginStateCheckResponse_Data) ProtoMessage()

func (*LoginStateCheckResponse_Data) ProtoReflect added in v1.0.17

func (*LoginStateCheckResponse_Data) Reset added in v1.0.17

func (x *LoginStateCheckResponse_Data) Reset()

func (*LoginStateCheckResponse_Data) String added in v1.0.17

type MUserInfoListResponse added in v1.0.11

type MUserInfoListResponse struct {
	StatusCode int32                       `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                      `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *MUserInfoListResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*MUserInfoListResponse) Descriptor deprecated added in v1.0.11

func (*MUserInfoListResponse) Descriptor() ([]byte, []int)

Deprecated: Use MUserInfoListResponse.ProtoReflect.Descriptor instead.

func (*MUserInfoListResponse) GetData added in v1.0.11

func (*MUserInfoListResponse) GetMsg added in v1.0.11

func (x *MUserInfoListResponse) GetMsg() string

func (*MUserInfoListResponse) GetStatusCode added in v1.0.11

func (x *MUserInfoListResponse) GetStatusCode() int32

func (*MUserInfoListResponse) ProtoMessage added in v1.0.11

func (*MUserInfoListResponse) ProtoMessage()

func (*MUserInfoListResponse) ProtoReflect added in v1.0.11

func (x *MUserInfoListResponse) ProtoReflect() protoreflect.Message

func (*MUserInfoListResponse) Reset added in v1.0.11

func (x *MUserInfoListResponse) Reset()

func (*MUserInfoListResponse) String added in v1.0.11

func (x *MUserInfoListResponse) String() string

type MUserInfoListResponse_Data added in v1.0.11

type MUserInfoListResponse_Data struct {
	UserInfos []*BaseUserInfo `protobuf:"bytes,1,rep,name=user_infos,json=userInfos,proto3" json:"user_infos,omitempty"`
	// contains filtered or unexported fields
}

func (*MUserInfoListResponse_Data) Descriptor deprecated added in v1.0.11

func (*MUserInfoListResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use MUserInfoListResponse_Data.ProtoReflect.Descriptor instead.

func (*MUserInfoListResponse_Data) GetUserInfos added in v1.0.11

func (x *MUserInfoListResponse_Data) GetUserInfos() []*BaseUserInfo

func (*MUserInfoListResponse_Data) ProtoMessage added in v1.0.11

func (*MUserInfoListResponse_Data) ProtoMessage()

func (*MUserInfoListResponse_Data) ProtoReflect added in v1.0.11

func (*MUserInfoListResponse_Data) Reset added in v1.0.11

func (x *MUserInfoListResponse_Data) Reset()

func (*MUserInfoListResponse_Data) String added in v1.0.11

func (x *MUserInfoListResponse_Data) String() string

type MUserMessageCreateRequest

type MUserMessageCreateRequest struct {
	UserMessages []*Message `protobuf:"bytes,1,rep,name=user_messages,json=userMessages,proto3" json:"user_messages,omitempty"`
	// contains filtered or unexported fields
}

func (*MUserMessageCreateRequest) Descriptor deprecated

func (*MUserMessageCreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use MUserMessageCreateRequest.ProtoReflect.Descriptor instead.

func (*MUserMessageCreateRequest) GetUserMessages

func (x *MUserMessageCreateRequest) GetUserMessages() []*Message

func (*MUserMessageCreateRequest) ProtoMessage

func (*MUserMessageCreateRequest) ProtoMessage()

func (*MUserMessageCreateRequest) ProtoReflect

func (*MUserMessageCreateRequest) Reset

func (x *MUserMessageCreateRequest) Reset()

func (*MUserMessageCreateRequest) String

func (x *MUserMessageCreateRequest) String() string

type MUserMessageCreateResponse

type MUserMessageCreateResponse struct {
	StatusCode int32                            `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                           `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *MUserMessageCreateResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*MUserMessageCreateResponse) Descriptor deprecated

func (*MUserMessageCreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use MUserMessageCreateResponse.ProtoReflect.Descriptor instead.

func (*MUserMessageCreateResponse) GetData

func (*MUserMessageCreateResponse) GetMsg

func (x *MUserMessageCreateResponse) GetMsg() string

func (*MUserMessageCreateResponse) GetStatusCode

func (x *MUserMessageCreateResponse) GetStatusCode() int32

func (*MUserMessageCreateResponse) ProtoMessage

func (*MUserMessageCreateResponse) ProtoMessage()

func (*MUserMessageCreateResponse) ProtoReflect

func (*MUserMessageCreateResponse) Reset

func (x *MUserMessageCreateResponse) Reset()

func (*MUserMessageCreateResponse) String

func (x *MUserMessageCreateResponse) String() string

type MUserMessageCreateResponse_Data

type MUserMessageCreateResponse_Data struct {
	MessageIds []int64 `protobuf:"varint,1,rep,packed,name=message_ids,json=messageIds,proto3" json:"message_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*MUserMessageCreateResponse_Data) Descriptor deprecated

func (*MUserMessageCreateResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use MUserMessageCreateResponse_Data.ProtoReflect.Descriptor instead.

func (*MUserMessageCreateResponse_Data) GetMessageIds added in v1.0.7

func (x *MUserMessageCreateResponse_Data) GetMessageIds() []int64

func (*MUserMessageCreateResponse_Data) ProtoMessage

func (*MUserMessageCreateResponse_Data) ProtoMessage()

func (*MUserMessageCreateResponse_Data) ProtoReflect

func (*MUserMessageCreateResponse_Data) Reset

func (*MUserMessageCreateResponse_Data) String

type Message added in v1.0.7

type Message struct {
	UserId         int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	RecordId       int64  `protobuf:"varint,2,opt,name=record_id,json=recordId,proto3" json:"record_id,omitempty"`
	UserName       string `protobuf:"bytes,3,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	MessageTitle   string `protobuf:"bytes,4,opt,name=message_title,json=messageTitle,proto3" json:"message_title,omitempty"`
	MessageContent string `protobuf:"bytes,5,opt,name=message_content,json=messageContent,proto3" json:"message_content,omitempty"`
	MessageDetail  string `protobuf:"bytes,6,opt,name=message_detail,json=messageDetail,proto3" json:"message_detail,omitempty"`
	HasRead        int32  `protobuf:"varint,7,opt,name=has_read,json=hasRead,proto3" json:"has_read,omitempty"`
	CreatedAt      int64  `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Message) Descriptor deprecated added in v1.0.7

func (*Message) Descriptor() ([]byte, []int)

Deprecated: Use Message.ProtoReflect.Descriptor instead.

func (*Message) GetCreatedAt added in v1.0.7

func (x *Message) GetCreatedAt() int64

func (*Message) GetHasRead added in v1.0.7

func (x *Message) GetHasRead() int32

func (*Message) GetMessageContent added in v1.0.7

func (x *Message) GetMessageContent() string

func (*Message) GetMessageDetail added in v1.0.8

func (x *Message) GetMessageDetail() string

func (*Message) GetMessageTitle added in v1.0.7

func (x *Message) GetMessageTitle() string

func (*Message) GetRecordId added in v1.0.7

func (x *Message) GetRecordId() int64

func (*Message) GetUserId added in v1.0.7

func (x *Message) GetUserId() int64

func (*Message) GetUserName added in v1.0.7

func (x *Message) GetUserName() string

func (*Message) ProtoMessage added in v1.0.7

func (*Message) ProtoMessage()

func (*Message) ProtoReflect added in v1.0.7

func (x *Message) ProtoReflect() protoreflect.Message

func (*Message) Reset added in v1.0.7

func (x *Message) Reset()

func (*Message) String added in v1.0.7

func (x *Message) String() string

type UnimplementedCloudUserCenterServer added in v1.0.4

type UnimplementedCloudUserCenterServer struct {
}

UnimplementedCloudUserCenterServer must be embedded to have forward compatible implementations.

func (UnimplementedCloudUserCenterServer) LoginStateCheck added in v1.0.17

func (UnimplementedCloudUserCenterServer) MUserMessageCreate added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoAuth added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoCreate added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoDelete added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoDeleteHidden added in v1.0.14

func (UnimplementedCloudUserCenterServer) UserInfoGet added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoGetByName added in v1.0.9

func (UnimplementedCloudUserCenterServer) UserInfoList added in v1.0.11

func (UnimplementedCloudUserCenterServer) UserInfoSearch added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserInfoUpdate added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserMessageCreate added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserMessageDelete added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserMessageGet added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserMessageList added in v1.0.7

func (UnimplementedCloudUserCenterServer) UserMessageUpdate added in v1.0.4

func (UnimplementedCloudUserCenterServer) UserTokenGet added in v1.0.18

type UnsafeCloudUserCenterServer added in v1.0.4

type UnsafeCloudUserCenterServer interface {
	// contains filtered or unexported methods
}

UnsafeCloudUserCenterServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to CloudUserCenterServer will result in compilation errors.

type UserInfoAuthRequest

type UserInfoAuthRequest struct {
	UserName    string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	Email       string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	PhoneNumber string `protobuf:"bytes,4,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
	Password    string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoAuthRequest) Descriptor deprecated

func (*UserInfoAuthRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoAuthRequest.ProtoReflect.Descriptor instead.

func (*UserInfoAuthRequest) GetEmail

func (x *UserInfoAuthRequest) GetEmail() string

func (*UserInfoAuthRequest) GetPassword

func (x *UserInfoAuthRequest) GetPassword() string

func (*UserInfoAuthRequest) GetPhoneNumber

func (x *UserInfoAuthRequest) GetPhoneNumber() string

func (*UserInfoAuthRequest) GetUserName

func (x *UserInfoAuthRequest) GetUserName() string

func (*UserInfoAuthRequest) ProtoMessage

func (*UserInfoAuthRequest) ProtoMessage()

func (*UserInfoAuthRequest) ProtoReflect

func (x *UserInfoAuthRequest) ProtoReflect() protoreflect.Message

func (*UserInfoAuthRequest) Reset

func (x *UserInfoAuthRequest) Reset()

func (*UserInfoAuthRequest) String

func (x *UserInfoAuthRequest) String() string

type UserInfoAuthResponse

type UserInfoAuthResponse struct {
	StatusCode int32                      `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                     `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoAuthResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoAuthResponse) Descriptor deprecated

func (*UserInfoAuthResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoAuthResponse.ProtoReflect.Descriptor instead.

func (*UserInfoAuthResponse) GetData

func (*UserInfoAuthResponse) GetMsg

func (x *UserInfoAuthResponse) GetMsg() string

func (*UserInfoAuthResponse) GetStatusCode

func (x *UserInfoAuthResponse) GetStatusCode() int32

func (*UserInfoAuthResponse) ProtoMessage

func (*UserInfoAuthResponse) ProtoMessage()

func (*UserInfoAuthResponse) ProtoReflect

func (x *UserInfoAuthResponse) ProtoReflect() protoreflect.Message

func (*UserInfoAuthResponse) Reset

func (x *UserInfoAuthResponse) Reset()

func (*UserInfoAuthResponse) String

func (x *UserInfoAuthResponse) String() string

type UserInfoAuthResponse_Data

type UserInfoAuthResponse_Data struct {
	UserInfo *BaseUserInfo `protobuf:"bytes,1,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoAuthResponse_Data) Descriptor deprecated

func (*UserInfoAuthResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoAuthResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoAuthResponse_Data) GetUserInfo

func (x *UserInfoAuthResponse_Data) GetUserInfo() *BaseUserInfo

func (*UserInfoAuthResponse_Data) ProtoMessage

func (*UserInfoAuthResponse_Data) ProtoMessage()

func (*UserInfoAuthResponse_Data) ProtoReflect

func (*UserInfoAuthResponse_Data) Reset

func (x *UserInfoAuthResponse_Data) Reset()

func (*UserInfoAuthResponse_Data) String

func (x *UserInfoAuthResponse_Data) String() string

type UserInfoCreateRequest

type UserInfoCreateRequest struct {
	CreateUserInfo *CreateUserInfo `protobuf:"bytes,1,opt,name=create_user_info,json=createUserInfo,proto3" json:"create_user_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoCreateRequest) Descriptor deprecated

func (*UserInfoCreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoCreateRequest.ProtoReflect.Descriptor instead.

func (*UserInfoCreateRequest) GetCreateUserInfo

func (x *UserInfoCreateRequest) GetCreateUserInfo() *CreateUserInfo

func (*UserInfoCreateRequest) ProtoMessage

func (*UserInfoCreateRequest) ProtoMessage()

func (*UserInfoCreateRequest) ProtoReflect

func (x *UserInfoCreateRequest) ProtoReflect() protoreflect.Message

func (*UserInfoCreateRequest) Reset

func (x *UserInfoCreateRequest) Reset()

func (*UserInfoCreateRequest) String

func (x *UserInfoCreateRequest) String() string

type UserInfoCreateResponse

type UserInfoCreateResponse struct {
	StatusCode int32                        `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                       `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoCreateResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoCreateResponse) Descriptor deprecated

func (*UserInfoCreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoCreateResponse.ProtoReflect.Descriptor instead.

func (*UserInfoCreateResponse) GetData

func (*UserInfoCreateResponse) GetMsg

func (x *UserInfoCreateResponse) GetMsg() string

func (*UserInfoCreateResponse) GetStatusCode

func (x *UserInfoCreateResponse) GetStatusCode() int32

func (*UserInfoCreateResponse) ProtoMessage

func (*UserInfoCreateResponse) ProtoMessage()

func (*UserInfoCreateResponse) ProtoReflect

func (x *UserInfoCreateResponse) ProtoReflect() protoreflect.Message

func (*UserInfoCreateResponse) Reset

func (x *UserInfoCreateResponse) Reset()

func (*UserInfoCreateResponse) String

func (x *UserInfoCreateResponse) String() string

type UserInfoCreateResponse_Data

type UserInfoCreateResponse_Data struct {
	UserId int64 `protobuf:"varint,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoCreateResponse_Data) Descriptor deprecated

func (*UserInfoCreateResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoCreateResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoCreateResponse_Data) GetUserId

func (x *UserInfoCreateResponse_Data) GetUserId() int64

func (*UserInfoCreateResponse_Data) ProtoMessage

func (*UserInfoCreateResponse_Data) ProtoMessage()

func (*UserInfoCreateResponse_Data) ProtoReflect

func (*UserInfoCreateResponse_Data) Reset

func (x *UserInfoCreateResponse_Data) Reset()

func (*UserInfoCreateResponse_Data) String

func (x *UserInfoCreateResponse_Data) String() string

type UserInfoDeleteHiddenRequest added in v1.0.14

type UserInfoDeleteHiddenRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoDeleteHiddenRequest) Descriptor deprecated added in v1.0.14

func (*UserInfoDeleteHiddenRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteHiddenRequest.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteHiddenRequest) GetUserId added in v1.0.14

func (x *UserInfoDeleteHiddenRequest) GetUserId() int64

func (*UserInfoDeleteHiddenRequest) ProtoMessage added in v1.0.14

func (*UserInfoDeleteHiddenRequest) ProtoMessage()

func (*UserInfoDeleteHiddenRequest) ProtoReflect added in v1.0.14

func (*UserInfoDeleteHiddenRequest) Reset added in v1.0.14

func (x *UserInfoDeleteHiddenRequest) Reset()

func (*UserInfoDeleteHiddenRequest) String added in v1.0.14

func (x *UserInfoDeleteHiddenRequest) String() string

type UserInfoDeleteHiddenResponse added in v1.0.14

type UserInfoDeleteHiddenResponse struct {
	StatusCode int32                              `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                             `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoDeleteHiddenResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoDeleteHiddenResponse) Descriptor deprecated added in v1.0.14

func (*UserInfoDeleteHiddenResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteHiddenResponse.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteHiddenResponse) GetData added in v1.0.14

func (*UserInfoDeleteHiddenResponse) GetMsg added in v1.0.14

func (*UserInfoDeleteHiddenResponse) GetStatusCode added in v1.0.14

func (x *UserInfoDeleteHiddenResponse) GetStatusCode() int32

func (*UserInfoDeleteHiddenResponse) ProtoMessage added in v1.0.14

func (*UserInfoDeleteHiddenResponse) ProtoMessage()

func (*UserInfoDeleteHiddenResponse) ProtoReflect added in v1.0.14

func (*UserInfoDeleteHiddenResponse) Reset added in v1.0.14

func (x *UserInfoDeleteHiddenResponse) Reset()

func (*UserInfoDeleteHiddenResponse) String added in v1.0.14

type UserInfoDeleteHiddenResponse_Data added in v1.0.14

type UserInfoDeleteHiddenResponse_Data struct {
	// contains filtered or unexported fields
}

func (*UserInfoDeleteHiddenResponse_Data) Descriptor deprecated added in v1.0.14

func (*UserInfoDeleteHiddenResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteHiddenResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteHiddenResponse_Data) ProtoMessage added in v1.0.14

func (*UserInfoDeleteHiddenResponse_Data) ProtoMessage()

func (*UserInfoDeleteHiddenResponse_Data) ProtoReflect added in v1.0.14

func (*UserInfoDeleteHiddenResponse_Data) Reset added in v1.0.14

func (*UserInfoDeleteHiddenResponse_Data) String added in v1.0.14

type UserInfoDeleteRequest

type UserInfoDeleteRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoDeleteRequest) Descriptor deprecated

func (*UserInfoDeleteRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteRequest.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteRequest) GetUserId

func (x *UserInfoDeleteRequest) GetUserId() int64

func (*UserInfoDeleteRequest) ProtoMessage

func (*UserInfoDeleteRequest) ProtoMessage()

func (*UserInfoDeleteRequest) ProtoReflect

func (x *UserInfoDeleteRequest) ProtoReflect() protoreflect.Message

func (*UserInfoDeleteRequest) Reset

func (x *UserInfoDeleteRequest) Reset()

func (*UserInfoDeleteRequest) String

func (x *UserInfoDeleteRequest) String() string

type UserInfoDeleteResponse

type UserInfoDeleteResponse struct {
	StatusCode int32                        `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                       `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoDeleteResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoDeleteResponse) Descriptor deprecated

func (*UserInfoDeleteResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteResponse.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteResponse) GetData

func (*UserInfoDeleteResponse) GetMsg

func (x *UserInfoDeleteResponse) GetMsg() string

func (*UserInfoDeleteResponse) GetStatusCode

func (x *UserInfoDeleteResponse) GetStatusCode() int32

func (*UserInfoDeleteResponse) ProtoMessage

func (*UserInfoDeleteResponse) ProtoMessage()

func (*UserInfoDeleteResponse) ProtoReflect

func (x *UserInfoDeleteResponse) ProtoReflect() protoreflect.Message

func (*UserInfoDeleteResponse) Reset

func (x *UserInfoDeleteResponse) Reset()

func (*UserInfoDeleteResponse) String

func (x *UserInfoDeleteResponse) String() string

type UserInfoDeleteResponse_Data

type UserInfoDeleteResponse_Data struct {
	// contains filtered or unexported fields
}

func (*UserInfoDeleteResponse_Data) Descriptor deprecated

func (*UserInfoDeleteResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoDeleteResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoDeleteResponse_Data) ProtoMessage

func (*UserInfoDeleteResponse_Data) ProtoMessage()

func (*UserInfoDeleteResponse_Data) ProtoReflect

func (*UserInfoDeleteResponse_Data) Reset

func (x *UserInfoDeleteResponse_Data) Reset()

func (*UserInfoDeleteResponse_Data) String

func (x *UserInfoDeleteResponse_Data) String() string

type UserInfoGetByNameRequest added in v1.0.9

type UserInfoGetByNameRequest struct {
	UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetByNameRequest) Descriptor deprecated added in v1.0.9

func (*UserInfoGetByNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetByNameRequest.ProtoReflect.Descriptor instead.

func (*UserInfoGetByNameRequest) GetUserName added in v1.0.9

func (x *UserInfoGetByNameRequest) GetUserName() string

func (*UserInfoGetByNameRequest) ProtoMessage added in v1.0.9

func (*UserInfoGetByNameRequest) ProtoMessage()

func (*UserInfoGetByNameRequest) ProtoReflect added in v1.0.9

func (x *UserInfoGetByNameRequest) ProtoReflect() protoreflect.Message

func (*UserInfoGetByNameRequest) Reset added in v1.0.9

func (x *UserInfoGetByNameRequest) Reset()

func (*UserInfoGetByNameRequest) String added in v1.0.9

func (x *UserInfoGetByNameRequest) String() string

type UserInfoGetByNameResponse added in v1.0.9

type UserInfoGetByNameResponse struct {
	StatusCode int32                           `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                          `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoGetByNameResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetByNameResponse) Descriptor deprecated added in v1.0.9

func (*UserInfoGetByNameResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetByNameResponse.ProtoReflect.Descriptor instead.

func (*UserInfoGetByNameResponse) GetData added in v1.0.9

func (*UserInfoGetByNameResponse) GetMsg added in v1.0.9

func (x *UserInfoGetByNameResponse) GetMsg() string

func (*UserInfoGetByNameResponse) GetStatusCode added in v1.0.9

func (x *UserInfoGetByNameResponse) GetStatusCode() int32

func (*UserInfoGetByNameResponse) ProtoMessage added in v1.0.9

func (*UserInfoGetByNameResponse) ProtoMessage()

func (*UserInfoGetByNameResponse) ProtoReflect added in v1.0.9

func (*UserInfoGetByNameResponse) Reset added in v1.0.9

func (x *UserInfoGetByNameResponse) Reset()

func (*UserInfoGetByNameResponse) String added in v1.0.9

func (x *UserInfoGetByNameResponse) String() string

type UserInfoGetByNameResponse_Data added in v1.0.9

type UserInfoGetByNameResponse_Data struct {
	UserInfo *BaseUserInfo `protobuf:"bytes,1,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetByNameResponse_Data) Descriptor deprecated added in v1.0.9

func (*UserInfoGetByNameResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetByNameResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoGetByNameResponse_Data) GetUserInfo added in v1.0.9

func (x *UserInfoGetByNameResponse_Data) GetUserInfo() *BaseUserInfo

func (*UserInfoGetByNameResponse_Data) ProtoMessage added in v1.0.9

func (*UserInfoGetByNameResponse_Data) ProtoMessage()

func (*UserInfoGetByNameResponse_Data) ProtoReflect added in v1.0.9

func (*UserInfoGetByNameResponse_Data) Reset added in v1.0.9

func (x *UserInfoGetByNameResponse_Data) Reset()

func (*UserInfoGetByNameResponse_Data) String added in v1.0.9

type UserInfoGetRequest

type UserInfoGetRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetRequest) Descriptor deprecated

func (*UserInfoGetRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetRequest.ProtoReflect.Descriptor instead.

func (*UserInfoGetRequest) GetUserId

func (x *UserInfoGetRequest) GetUserId() int64

func (*UserInfoGetRequest) ProtoMessage

func (*UserInfoGetRequest) ProtoMessage()

func (*UserInfoGetRequest) ProtoReflect

func (x *UserInfoGetRequest) ProtoReflect() protoreflect.Message

func (*UserInfoGetRequest) Reset

func (x *UserInfoGetRequest) Reset()

func (*UserInfoGetRequest) String

func (x *UserInfoGetRequest) String() string

type UserInfoGetResponse

type UserInfoGetResponse struct {
	StatusCode int32                     `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                    `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoGetResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetResponse) Descriptor deprecated

func (*UserInfoGetResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetResponse.ProtoReflect.Descriptor instead.

func (*UserInfoGetResponse) GetData

func (*UserInfoGetResponse) GetMsg

func (x *UserInfoGetResponse) GetMsg() string

func (*UserInfoGetResponse) GetStatusCode

func (x *UserInfoGetResponse) GetStatusCode() int32

func (*UserInfoGetResponse) ProtoMessage

func (*UserInfoGetResponse) ProtoMessage()

func (*UserInfoGetResponse) ProtoReflect

func (x *UserInfoGetResponse) ProtoReflect() protoreflect.Message

func (*UserInfoGetResponse) Reset

func (x *UserInfoGetResponse) Reset()

func (*UserInfoGetResponse) String

func (x *UserInfoGetResponse) String() string

type UserInfoGetResponse_Data

type UserInfoGetResponse_Data struct {
	UserInfo *BaseUserInfo `protobuf:"bytes,1,opt,name=user_info,json=userInfo,proto3" json:"user_info,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoGetResponse_Data) Descriptor deprecated

func (*UserInfoGetResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoGetResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoGetResponse_Data) GetUserInfo

func (x *UserInfoGetResponse_Data) GetUserInfo() *BaseUserInfo

func (*UserInfoGetResponse_Data) ProtoMessage

func (*UserInfoGetResponse_Data) ProtoMessage()

func (*UserInfoGetResponse_Data) ProtoReflect

func (x *UserInfoGetResponse_Data) ProtoReflect() protoreflect.Message

func (*UserInfoGetResponse_Data) Reset

func (x *UserInfoGetResponse_Data) Reset()

func (*UserInfoGetResponse_Data) String

func (x *UserInfoGetResponse_Data) String() string

type UserInfoListRequest added in v1.0.11

type UserInfoListRequest struct {
	UserIds []int64 `protobuf:"varint,1,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	Name    string  `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoListRequest) Descriptor deprecated added in v1.0.11

func (*UserInfoListRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoListRequest.ProtoReflect.Descriptor instead.

func (*UserInfoListRequest) GetName added in v1.0.11

func (x *UserInfoListRequest) GetName() string

func (*UserInfoListRequest) GetUserIds added in v1.0.11

func (x *UserInfoListRequest) GetUserIds() []int64

func (*UserInfoListRequest) ProtoMessage added in v1.0.11

func (*UserInfoListRequest) ProtoMessage()

func (*UserInfoListRequest) ProtoReflect added in v1.0.11

func (x *UserInfoListRequest) ProtoReflect() protoreflect.Message

func (*UserInfoListRequest) Reset added in v1.0.11

func (x *UserInfoListRequest) Reset()

func (*UserInfoListRequest) String added in v1.0.11

func (x *UserInfoListRequest) String() string

type UserInfoSearchRequest

type UserInfoSearchRequest struct {
	Name     string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Email    string  `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
	UserIds  []int64 `protobuf:"varint,3,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	Page     int32   `protobuf:"varint,4,opt,name=page,proto3" json:"page,omitempty"`
	PageSize int32   `protobuf:"varint,5,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoSearchRequest) Descriptor deprecated

func (*UserInfoSearchRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoSearchRequest.ProtoReflect.Descriptor instead.

func (*UserInfoSearchRequest) GetEmail

func (x *UserInfoSearchRequest) GetEmail() string

func (*UserInfoSearchRequest) GetName

func (x *UserInfoSearchRequest) GetName() string

func (*UserInfoSearchRequest) GetPage

func (x *UserInfoSearchRequest) GetPage() int32

func (*UserInfoSearchRequest) GetPageSize

func (x *UserInfoSearchRequest) GetPageSize() int32

func (*UserInfoSearchRequest) GetUserIds added in v1.0.11

func (x *UserInfoSearchRequest) GetUserIds() []int64

func (*UserInfoSearchRequest) ProtoMessage

func (*UserInfoSearchRequest) ProtoMessage()

func (*UserInfoSearchRequest) ProtoReflect

func (x *UserInfoSearchRequest) ProtoReflect() protoreflect.Message

func (*UserInfoSearchRequest) Reset

func (x *UserInfoSearchRequest) Reset()

func (*UserInfoSearchRequest) String

func (x *UserInfoSearchRequest) String() string

type UserInfoSearchResponse

type UserInfoSearchResponse struct {
	StatusCode int32                        `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                       `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoSearchResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoSearchResponse) Descriptor deprecated

func (*UserInfoSearchResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoSearchResponse.ProtoReflect.Descriptor instead.

func (*UserInfoSearchResponse) GetData

func (*UserInfoSearchResponse) GetMsg

func (x *UserInfoSearchResponse) GetMsg() string

func (*UserInfoSearchResponse) GetStatusCode

func (x *UserInfoSearchResponse) GetStatusCode() int32

func (*UserInfoSearchResponse) ProtoMessage

func (*UserInfoSearchResponse) ProtoMessage()

func (*UserInfoSearchResponse) ProtoReflect

func (x *UserInfoSearchResponse) ProtoReflect() protoreflect.Message

func (*UserInfoSearchResponse) Reset

func (x *UserInfoSearchResponse) Reset()

func (*UserInfoSearchResponse) String

func (x *UserInfoSearchResponse) String() string

type UserInfoSearchResponse_Data

type UserInfoSearchResponse_Data struct {
	Total     int32           `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	UserInfos []*BaseUserInfo `protobuf:"bytes,2,rep,name=user_infos,json=userInfos,proto3" json:"user_infos,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoSearchResponse_Data) Descriptor deprecated

func (*UserInfoSearchResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoSearchResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoSearchResponse_Data) GetTotal

func (x *UserInfoSearchResponse_Data) GetTotal() int32

func (*UserInfoSearchResponse_Data) GetUserInfos

func (x *UserInfoSearchResponse_Data) GetUserInfos() []*BaseUserInfo

func (*UserInfoSearchResponse_Data) ProtoMessage

func (*UserInfoSearchResponse_Data) ProtoMessage()

func (*UserInfoSearchResponse_Data) ProtoReflect

func (*UserInfoSearchResponse_Data) Reset

func (x *UserInfoSearchResponse_Data) Reset()

func (*UserInfoSearchResponse_Data) String

func (x *UserInfoSearchResponse_Data) String() string

type UserInfoUpdateRequest

type UserInfoUpdateRequest struct {
	UserId          int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Name            string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Password        string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	PasswordLevel   int32  `protobuf:"varint,4,opt,name=password_level,json=passwordLevel,proto3" json:"password_level,omitempty"`
	InstitutionName string `protobuf:"bytes,5,opt,name=institution_name,json=institutionName,proto3" json:"institution_name,omitempty"`
	Grade           string `protobuf:"bytes,6,opt,name=grade,proto3" json:"grade,omitempty"`
	Area            string `protobuf:"bytes,7,opt,name=area,proto3" json:"area,omitempty"`
	DiskCapacity    int32  `protobuf:"varint,8,opt,name=disk_capacity,json=diskCapacity,proto3" json:"disk_capacity,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoUpdateRequest) Descriptor deprecated

func (*UserInfoUpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserInfoUpdateRequest) GetArea added in v1.0.16

func (x *UserInfoUpdateRequest) GetArea() string

func (*UserInfoUpdateRequest) GetDiskCapacity added in v1.0.16

func (x *UserInfoUpdateRequest) GetDiskCapacity() int32

func (*UserInfoUpdateRequest) GetGrade added in v1.0.16

func (x *UserInfoUpdateRequest) GetGrade() string

func (*UserInfoUpdateRequest) GetInstitutionName added in v1.0.16

func (x *UserInfoUpdateRequest) GetInstitutionName() string

func (*UserInfoUpdateRequest) GetName added in v1.0.16

func (x *UserInfoUpdateRequest) GetName() string

func (*UserInfoUpdateRequest) GetPassword added in v1.0.16

func (x *UserInfoUpdateRequest) GetPassword() string

func (*UserInfoUpdateRequest) GetPasswordLevel added in v1.0.16

func (x *UserInfoUpdateRequest) GetPasswordLevel() int32

func (*UserInfoUpdateRequest) GetUserId added in v1.0.16

func (x *UserInfoUpdateRequest) GetUserId() int64

func (*UserInfoUpdateRequest) ProtoMessage

func (*UserInfoUpdateRequest) ProtoMessage()

func (*UserInfoUpdateRequest) ProtoReflect

func (x *UserInfoUpdateRequest) ProtoReflect() protoreflect.Message

func (*UserInfoUpdateRequest) Reset

func (x *UserInfoUpdateRequest) Reset()

func (*UserInfoUpdateRequest) String

func (x *UserInfoUpdateRequest) String() string

type UserInfoUpdateResponse

type UserInfoUpdateResponse struct {
	StatusCode int32                        `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                       `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserInfoUpdateResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserInfoUpdateResponse) Descriptor deprecated

func (*UserInfoUpdateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoUpdateResponse.ProtoReflect.Descriptor instead.

func (*UserInfoUpdateResponse) GetData

func (*UserInfoUpdateResponse) GetMsg

func (x *UserInfoUpdateResponse) GetMsg() string

func (*UserInfoUpdateResponse) GetStatusCode

func (x *UserInfoUpdateResponse) GetStatusCode() int32

func (*UserInfoUpdateResponse) ProtoMessage

func (*UserInfoUpdateResponse) ProtoMessage()

func (*UserInfoUpdateResponse) ProtoReflect

func (x *UserInfoUpdateResponse) ProtoReflect() protoreflect.Message

func (*UserInfoUpdateResponse) Reset

func (x *UserInfoUpdateResponse) Reset()

func (*UserInfoUpdateResponse) String

func (x *UserInfoUpdateResponse) String() string

type UserInfoUpdateResponse_Data

type UserInfoUpdateResponse_Data struct {
	// contains filtered or unexported fields
}

func (*UserInfoUpdateResponse_Data) Descriptor deprecated

func (*UserInfoUpdateResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserInfoUpdateResponse_Data.ProtoReflect.Descriptor instead.

func (*UserInfoUpdateResponse_Data) ProtoMessage

func (*UserInfoUpdateResponse_Data) ProtoMessage()

func (*UserInfoUpdateResponse_Data) ProtoReflect

func (*UserInfoUpdateResponse_Data) Reset

func (x *UserInfoUpdateResponse_Data) Reset()

func (*UserInfoUpdateResponse_Data) String

func (x *UserInfoUpdateResponse_Data) String() string

type UserMessageCreateRequest

type UserMessageCreateRequest struct {
	UserId         int64  `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	MessageTitle   string `protobuf:"bytes,2,opt,name=message_title,json=messageTitle,proto3" json:"message_title,omitempty"`
	MessageContent string `protobuf:"bytes,3,opt,name=message_content,json=messageContent,proto3" json:"message_content,omitempty"`
	MessageDetail  string `protobuf:"bytes,4,opt,name=message_detail,json=messageDetail,proto3" json:"message_detail,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageCreateRequest) Descriptor deprecated

func (*UserMessageCreateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageCreateRequest.ProtoReflect.Descriptor instead.

func (*UserMessageCreateRequest) GetMessageContent added in v1.0.11

func (x *UserMessageCreateRequest) GetMessageContent() string

func (*UserMessageCreateRequest) GetMessageDetail added in v1.0.11

func (x *UserMessageCreateRequest) GetMessageDetail() string

func (*UserMessageCreateRequest) GetMessageTitle added in v1.0.11

func (x *UserMessageCreateRequest) GetMessageTitle() string

func (*UserMessageCreateRequest) GetUserId added in v1.0.11

func (x *UserMessageCreateRequest) GetUserId() int64

func (*UserMessageCreateRequest) ProtoMessage

func (*UserMessageCreateRequest) ProtoMessage()

func (*UserMessageCreateRequest) ProtoReflect

func (x *UserMessageCreateRequest) ProtoReflect() protoreflect.Message

func (*UserMessageCreateRequest) Reset

func (x *UserMessageCreateRequest) Reset()

func (*UserMessageCreateRequest) String

func (x *UserMessageCreateRequest) String() string

type UserMessageCreateResponse

type UserMessageCreateResponse struct {
	StatusCode int32                           `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                          `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserMessageCreateResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageCreateResponse) Descriptor deprecated

func (*UserMessageCreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageCreateResponse.ProtoReflect.Descriptor instead.

func (*UserMessageCreateResponse) GetData

func (*UserMessageCreateResponse) GetMsg

func (x *UserMessageCreateResponse) GetMsg() string

func (*UserMessageCreateResponse) GetStatusCode

func (x *UserMessageCreateResponse) GetStatusCode() int32

func (*UserMessageCreateResponse) ProtoMessage

func (*UserMessageCreateResponse) ProtoMessage()

func (*UserMessageCreateResponse) ProtoReflect

func (*UserMessageCreateResponse) Reset

func (x *UserMessageCreateResponse) Reset()

func (*UserMessageCreateResponse) String

func (x *UserMessageCreateResponse) String() string

type UserMessageCreateResponse_Data

type UserMessageCreateResponse_Data struct {
	MessageId int64 `protobuf:"varint,1,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageCreateResponse_Data) Descriptor deprecated

func (*UserMessageCreateResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageCreateResponse_Data.ProtoReflect.Descriptor instead.

func (*UserMessageCreateResponse_Data) GetMessageId added in v1.0.7

func (x *UserMessageCreateResponse_Data) GetMessageId() int64

func (*UserMessageCreateResponse_Data) ProtoMessage

func (*UserMessageCreateResponse_Data) ProtoMessage()

func (*UserMessageCreateResponse_Data) ProtoReflect

func (*UserMessageCreateResponse_Data) Reset

func (x *UserMessageCreateResponse_Data) Reset()

func (*UserMessageCreateResponse_Data) String

type UserMessageDeleteRequest

type UserMessageDeleteRequest struct {
	UserId    int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	MessageId int64 `protobuf:"varint,2,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageDeleteRequest) Descriptor deprecated

func (*UserMessageDeleteRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageDeleteRequest.ProtoReflect.Descriptor instead.

func (*UserMessageDeleteRequest) GetMessageId added in v1.0.7

func (x *UserMessageDeleteRequest) GetMessageId() int64

func (*UserMessageDeleteRequest) GetUserId

func (x *UserMessageDeleteRequest) GetUserId() int64

func (*UserMessageDeleteRequest) ProtoMessage

func (*UserMessageDeleteRequest) ProtoMessage()

func (*UserMessageDeleteRequest) ProtoReflect

func (x *UserMessageDeleteRequest) ProtoReflect() protoreflect.Message

func (*UserMessageDeleteRequest) Reset

func (x *UserMessageDeleteRequest) Reset()

func (*UserMessageDeleteRequest) String

func (x *UserMessageDeleteRequest) String() string

type UserMessageDeleteResponse

type UserMessageDeleteResponse struct {
	StatusCode int32                           `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                          `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserMessageDeleteResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageDeleteResponse) Descriptor deprecated

func (*UserMessageDeleteResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageDeleteResponse.ProtoReflect.Descriptor instead.

func (*UserMessageDeleteResponse) GetData

func (*UserMessageDeleteResponse) GetMsg

func (x *UserMessageDeleteResponse) GetMsg() string

func (*UserMessageDeleteResponse) GetStatusCode

func (x *UserMessageDeleteResponse) GetStatusCode() int32

func (*UserMessageDeleteResponse) ProtoMessage

func (*UserMessageDeleteResponse) ProtoMessage()

func (*UserMessageDeleteResponse) ProtoReflect

func (*UserMessageDeleteResponse) Reset

func (x *UserMessageDeleteResponse) Reset()

func (*UserMessageDeleteResponse) String

func (x *UserMessageDeleteResponse) String() string

type UserMessageDeleteResponse_Data

type UserMessageDeleteResponse_Data struct {
	// contains filtered or unexported fields
}

func (*UserMessageDeleteResponse_Data) Descriptor deprecated

func (*UserMessageDeleteResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageDeleteResponse_Data.ProtoReflect.Descriptor instead.

func (*UserMessageDeleteResponse_Data) ProtoMessage

func (*UserMessageDeleteResponse_Data) ProtoMessage()

func (*UserMessageDeleteResponse_Data) ProtoReflect

func (*UserMessageDeleteResponse_Data) Reset

func (x *UserMessageDeleteResponse_Data) Reset()

func (*UserMessageDeleteResponse_Data) String

type UserMessageGetRequest

type UserMessageGetRequest struct {
	UserId    int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	MessageId int64 `protobuf:"varint,2,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageGetRequest) Descriptor deprecated

func (*UserMessageGetRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageGetRequest.ProtoReflect.Descriptor instead.

func (*UserMessageGetRequest) GetMessageId added in v1.0.7

func (x *UserMessageGetRequest) GetMessageId() int64

func (*UserMessageGetRequest) GetUserId

func (x *UserMessageGetRequest) GetUserId() int64

func (*UserMessageGetRequest) ProtoMessage

func (*UserMessageGetRequest) ProtoMessage()

func (*UserMessageGetRequest) ProtoReflect

func (x *UserMessageGetRequest) ProtoReflect() protoreflect.Message

func (*UserMessageGetRequest) Reset

func (x *UserMessageGetRequest) Reset()

func (*UserMessageGetRequest) String

func (x *UserMessageGetRequest) String() string

type UserMessageGetResponse

type UserMessageGetResponse struct {
	StatusCode int32                        `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                       `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserMessageGetResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageGetResponse) Descriptor deprecated

func (*UserMessageGetResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageGetResponse.ProtoReflect.Descriptor instead.

func (*UserMessageGetResponse) GetData

func (*UserMessageGetResponse) GetMsg

func (x *UserMessageGetResponse) GetMsg() string

func (*UserMessageGetResponse) GetStatusCode

func (x *UserMessageGetResponse) GetStatusCode() int32

func (*UserMessageGetResponse) ProtoMessage

func (*UserMessageGetResponse) ProtoMessage()

func (*UserMessageGetResponse) ProtoReflect

func (x *UserMessageGetResponse) ProtoReflect() protoreflect.Message

func (*UserMessageGetResponse) Reset

func (x *UserMessageGetResponse) Reset()

func (*UserMessageGetResponse) String

func (x *UserMessageGetResponse) String() string

type UserMessageGetResponse_Data

type UserMessageGetResponse_Data struct {
	Message *Message `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageGetResponse_Data) Descriptor deprecated

func (*UserMessageGetResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageGetResponse_Data.ProtoReflect.Descriptor instead.

func (*UserMessageGetResponse_Data) GetMessage added in v1.0.7

func (x *UserMessageGetResponse_Data) GetMessage() *Message

func (*UserMessageGetResponse_Data) ProtoMessage

func (*UserMessageGetResponse_Data) ProtoMessage()

func (*UserMessageGetResponse_Data) ProtoReflect

func (*UserMessageGetResponse_Data) Reset

func (x *UserMessageGetResponse_Data) Reset()

func (*UserMessageGetResponse_Data) String

func (x *UserMessageGetResponse_Data) String() string

type UserMessageListRequest added in v1.0.7

type UserMessageListRequest struct {
	UserId   int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	Page     int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
	PageSize int32 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	HasRead  int32 `protobuf:"varint,4,opt,name=has_read,json=hasRead,proto3" json:"has_read,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageListRequest) Descriptor deprecated added in v1.0.7

func (*UserMessageListRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageListRequest.ProtoReflect.Descriptor instead.

func (*UserMessageListRequest) GetHasRead added in v1.0.7

func (x *UserMessageListRequest) GetHasRead() int32

func (*UserMessageListRequest) GetPage added in v1.0.7

func (x *UserMessageListRequest) GetPage() int32

func (*UserMessageListRequest) GetPageSize added in v1.0.7

func (x *UserMessageListRequest) GetPageSize() int32

func (*UserMessageListRequest) GetUserId added in v1.0.7

func (x *UserMessageListRequest) GetUserId() int64

func (*UserMessageListRequest) ProtoMessage added in v1.0.7

func (*UserMessageListRequest) ProtoMessage()

func (*UserMessageListRequest) ProtoReflect added in v1.0.7

func (x *UserMessageListRequest) ProtoReflect() protoreflect.Message

func (*UserMessageListRequest) Reset added in v1.0.7

func (x *UserMessageListRequest) Reset()

func (*UserMessageListRequest) String added in v1.0.7

func (x *UserMessageListRequest) String() string

type UserMessageListResponse added in v1.0.7

type UserMessageListResponse struct {
	StatusCode int32                         `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                        `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserMessageListResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageListResponse) Descriptor deprecated added in v1.0.7

func (*UserMessageListResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageListResponse.ProtoReflect.Descriptor instead.

func (*UserMessageListResponse) GetData added in v1.0.7

func (*UserMessageListResponse) GetMsg added in v1.0.7

func (x *UserMessageListResponse) GetMsg() string

func (*UserMessageListResponse) GetStatusCode added in v1.0.7

func (x *UserMessageListResponse) GetStatusCode() int32

func (*UserMessageListResponse) ProtoMessage added in v1.0.7

func (*UserMessageListResponse) ProtoMessage()

func (*UserMessageListResponse) ProtoReflect added in v1.0.7

func (x *UserMessageListResponse) ProtoReflect() protoreflect.Message

func (*UserMessageListResponse) Reset added in v1.0.7

func (x *UserMessageListResponse) Reset()

func (*UserMessageListResponse) String added in v1.0.7

func (x *UserMessageListResponse) String() string

type UserMessageListResponse_Data added in v1.0.7

type UserMessageListResponse_Data struct {
	Total        int32      `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	UnReadTotal  int32      `protobuf:"varint,2,opt,name=un_read_total,json=unReadTotal,proto3" json:"un_read_total,omitempty"`
	UserMessages []*Message `protobuf:"bytes,3,rep,name=user_messages,json=userMessages,proto3" json:"user_messages,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageListResponse_Data) Descriptor deprecated added in v1.0.7

func (*UserMessageListResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageListResponse_Data.ProtoReflect.Descriptor instead.

func (*UserMessageListResponse_Data) GetTotal added in v1.0.7

func (x *UserMessageListResponse_Data) GetTotal() int32

func (*UserMessageListResponse_Data) GetUnReadTotal added in v1.0.7

func (x *UserMessageListResponse_Data) GetUnReadTotal() int32

func (*UserMessageListResponse_Data) GetUserMessages added in v1.0.7

func (x *UserMessageListResponse_Data) GetUserMessages() []*Message

func (*UserMessageListResponse_Data) ProtoMessage added in v1.0.7

func (*UserMessageListResponse_Data) ProtoMessage()

func (*UserMessageListResponse_Data) ProtoReflect added in v1.0.7

func (*UserMessageListResponse_Data) Reset added in v1.0.7

func (x *UserMessageListResponse_Data) Reset()

func (*UserMessageListResponse_Data) String added in v1.0.7

type UserMessageUpdateRequest

type UserMessageUpdateRequest struct {
	UserId    int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	MessageId int64 `protobuf:"varint,2,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	HasRead   int32 `protobuf:"varint,3,opt,name=has_read,json=hasRead,proto3" json:"has_read,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageUpdateRequest) Descriptor deprecated

func (*UserMessageUpdateRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageUpdateRequest.ProtoReflect.Descriptor instead.

func (*UserMessageUpdateRequest) GetHasRead

func (x *UserMessageUpdateRequest) GetHasRead() int32

func (*UserMessageUpdateRequest) GetMessageId added in v1.0.7

func (x *UserMessageUpdateRequest) GetMessageId() int64

func (*UserMessageUpdateRequest) GetUserId

func (x *UserMessageUpdateRequest) GetUserId() int64

func (*UserMessageUpdateRequest) ProtoMessage

func (*UserMessageUpdateRequest) ProtoMessage()

func (*UserMessageUpdateRequest) ProtoReflect

func (x *UserMessageUpdateRequest) ProtoReflect() protoreflect.Message

func (*UserMessageUpdateRequest) Reset

func (x *UserMessageUpdateRequest) Reset()

func (*UserMessageUpdateRequest) String

func (x *UserMessageUpdateRequest) String() string

type UserMessageUpdateResponse

type UserMessageUpdateResponse struct {
	StatusCode int32                           `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                          `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserMessageUpdateResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserMessageUpdateResponse) Descriptor deprecated

func (*UserMessageUpdateResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageUpdateResponse.ProtoReflect.Descriptor instead.

func (*UserMessageUpdateResponse) GetData

func (*UserMessageUpdateResponse) GetMsg

func (x *UserMessageUpdateResponse) GetMsg() string

func (*UserMessageUpdateResponse) GetStatusCode

func (x *UserMessageUpdateResponse) GetStatusCode() int32

func (*UserMessageUpdateResponse) ProtoMessage

func (*UserMessageUpdateResponse) ProtoMessage()

func (*UserMessageUpdateResponse) ProtoReflect

func (*UserMessageUpdateResponse) Reset

func (x *UserMessageUpdateResponse) Reset()

func (*UserMessageUpdateResponse) String

func (x *UserMessageUpdateResponse) String() string

type UserMessageUpdateResponse_Data

type UserMessageUpdateResponse_Data struct {
	// contains filtered or unexported fields
}

func (*UserMessageUpdateResponse_Data) Descriptor deprecated

func (*UserMessageUpdateResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserMessageUpdateResponse_Data.ProtoReflect.Descriptor instead.

func (*UserMessageUpdateResponse_Data) ProtoMessage

func (*UserMessageUpdateResponse_Data) ProtoMessage()

func (*UserMessageUpdateResponse_Data) ProtoReflect

func (*UserMessageUpdateResponse_Data) Reset

func (x *UserMessageUpdateResponse_Data) Reset()

func (*UserMessageUpdateResponse_Data) String

type UserTokenGetRequest added in v1.0.18

type UserTokenGetRequest struct {
	UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTokenGetRequest) Descriptor deprecated added in v1.0.18

func (*UserTokenGetRequest) Descriptor() ([]byte, []int)

Deprecated: Use UserTokenGetRequest.ProtoReflect.Descriptor instead.

func (*UserTokenGetRequest) GetUserId added in v1.0.18

func (x *UserTokenGetRequest) GetUserId() int64

func (*UserTokenGetRequest) ProtoMessage added in v1.0.18

func (*UserTokenGetRequest) ProtoMessage()

func (*UserTokenGetRequest) ProtoReflect added in v1.0.18

func (x *UserTokenGetRequest) ProtoReflect() protoreflect.Message

func (*UserTokenGetRequest) Reset added in v1.0.18

func (x *UserTokenGetRequest) Reset()

func (*UserTokenGetRequest) String added in v1.0.18

func (x *UserTokenGetRequest) String() string

type UserTokenGetResponse added in v1.0.18

type UserTokenGetResponse struct {
	StatusCode int32                      `protobuf:"varint,1,opt,name=status_code,json=statusCode,proto3" json:"status_code,omitempty"`
	Msg        string                     `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	Data       *UserTokenGetResponse_Data `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTokenGetResponse) Descriptor deprecated added in v1.0.18

func (*UserTokenGetResponse) Descriptor() ([]byte, []int)

Deprecated: Use UserTokenGetResponse.ProtoReflect.Descriptor instead.

func (*UserTokenGetResponse) GetData added in v1.0.18

func (*UserTokenGetResponse) GetMsg added in v1.0.18

func (x *UserTokenGetResponse) GetMsg() string

func (*UserTokenGetResponse) GetStatusCode added in v1.0.18

func (x *UserTokenGetResponse) GetStatusCode() int32

func (*UserTokenGetResponse) ProtoMessage added in v1.0.18

func (*UserTokenGetResponse) ProtoMessage()

func (*UserTokenGetResponse) ProtoReflect added in v1.0.18

func (x *UserTokenGetResponse) ProtoReflect() protoreflect.Message

func (*UserTokenGetResponse) Reset added in v1.0.18

func (x *UserTokenGetResponse) Reset()

func (*UserTokenGetResponse) String added in v1.0.18

func (x *UserTokenGetResponse) String() string

type UserTokenGetResponse_Data added in v1.0.18

type UserTokenGetResponse_Data struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*UserTokenGetResponse_Data) Descriptor deprecated added in v1.0.18

func (*UserTokenGetResponse_Data) Descriptor() ([]byte, []int)

Deprecated: Use UserTokenGetResponse_Data.ProtoReflect.Descriptor instead.

func (*UserTokenGetResponse_Data) GetToken added in v1.0.18

func (x *UserTokenGetResponse_Data) GetToken() string

func (*UserTokenGetResponse_Data) ProtoMessage added in v1.0.18

func (*UserTokenGetResponse_Data) ProtoMessage()

func (*UserTokenGetResponse_Data) ProtoReflect added in v1.0.18

func (*UserTokenGetResponse_Data) Reset added in v1.0.18

func (x *UserTokenGetResponse_Data) Reset()

func (*UserTokenGetResponse_Data) String added in v1.0.18

func (x *UserTokenGetResponse_Data) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL