Files
open-im-server/pkg/proto/user/user.pb.go
T

1354 lines
50 KiB
Go
Raw Normal View History

2021-05-26 19:44:49 +08:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: user/user.proto
package user // import "./user"
2021-09-22 20:10:38 +08:00
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
2021-12-27 16:48:05 +08:00
import sdk_ws "Open_IM/pkg/proto/sdk_ws"
2021-05-26 19:44:49 +08:00
import (
2021-09-22 20:10:38 +08:00
context "golang.org/x/net/context"
2021-05-26 19:44:49 +08:00
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
2021-09-22 20:10:38 +08:00
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2021-05-26 19:44:49 +08:00
type CommonResp struct {
2021-12-27 16:48:05 +08:00
ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
2021-05-26 19:44:49 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CommonResp) Reset() { *m = CommonResp{} }
func (m *CommonResp) String() string { return proto.CompactTextString(m) }
func (*CommonResp) ProtoMessage() {}
func (*CommonResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{0}
2021-05-26 19:44:49 +08:00
}
func (m *CommonResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CommonResp.Unmarshal(m, b)
}
func (m *CommonResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CommonResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *CommonResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommonResp.Merge(dst, src)
2021-05-26 19:44:49 +08:00
}
func (m *CommonResp) XXX_Size() int {
return xxx_messageInfo_CommonResp.Size(m)
}
func (m *CommonResp) XXX_DiscardUnknown() {
xxx_messageInfo_CommonResp.DiscardUnknown(m)
}
var xxx_messageInfo_CommonResp proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *CommonResp) GetErrCode() int32 {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ErrCode
2021-05-26 19:44:49 +08:00
}
return 0
}
2021-12-27 16:48:05 +08:00
func (m *CommonResp) GetErrMsg() string {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ErrMsg
2021-05-26 19:44:49 +08:00
}
return ""
}
2021-09-22 20:10:38 +08:00
type DeleteUsersReq struct {
2021-12-27 16:48:05 +08:00
DeleteUserIDList []string `protobuf:"bytes,2,rep,name=DeleteUserIDList" json:"DeleteUserIDList,omitempty"`
OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"`
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,4,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteUsersReq) Reset() { *m = DeleteUsersReq{} }
func (m *DeleteUsersReq) String() string { return proto.CompactTextString(m) }
func (*DeleteUsersReq) ProtoMessage() {}
func (*DeleteUsersReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{1}
2021-09-22 20:10:38 +08:00
}
func (m *DeleteUsersReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteUsersReq.Unmarshal(m, b)
}
func (m *DeleteUsersReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteUsersReq.Marshal(b, m, deterministic)
}
func (dst *DeleteUsersReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteUsersReq.Merge(dst, src)
}
func (m *DeleteUsersReq) XXX_Size() int {
return xxx_messageInfo_DeleteUsersReq.Size(m)
}
func (m *DeleteUsersReq) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteUsersReq.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteUsersReq proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *DeleteUsersReq) GetDeleteUserIDList() []string {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.DeleteUserIDList
2021-09-22 20:10:38 +08:00
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *DeleteUsersReq) GetOpUserID() string {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-09-22 20:10:38 +08:00
}
return ""
}
func (m *DeleteUsersReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
2021-12-27 16:48:05 +08:00
type DeleteUsersResp struct {
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=CommonResp" json:"CommonResp,omitempty"`
FailedUserIDList []string `protobuf:"bytes,2,rep,name=FailedUserIDList" json:"FailedUserIDList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DeleteUsersResp) Reset() { *m = DeleteUsersResp{} }
func (m *DeleteUsersResp) String() string { return proto.CompactTextString(m) }
func (*DeleteUsersResp) ProtoMessage() {}
func (*DeleteUsersResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{2}
2021-12-27 16:48:05 +08:00
}
func (m *DeleteUsersResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DeleteUsersResp.Unmarshal(m, b)
}
func (m *DeleteUsersResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DeleteUsersResp.Marshal(b, m, deterministic)
}
func (dst *DeleteUsersResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_DeleteUsersResp.Merge(dst, src)
}
func (m *DeleteUsersResp) XXX_Size() int {
return xxx_messageInfo_DeleteUsersResp.Size(m)
}
func (m *DeleteUsersResp) XXX_DiscardUnknown() {
xxx_messageInfo_DeleteUsersResp.DiscardUnknown(m)
}
var xxx_messageInfo_DeleteUsersResp proto.InternalMessageInfo
func (m *DeleteUsersResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
func (m *DeleteUsersResp) GetFailedUserIDList() []string {
if m != nil {
return m.FailedUserIDList
}
return nil
}
type GetAllUserIDReq struct {
OpUserID string `protobuf:"bytes,1,opt,name=opUserID" json:"opUserID,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
2021-09-22 20:10:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) Reset() { *m = GetAllUserIDReq{} }
func (m *GetAllUserIDReq) String() string { return proto.CompactTextString(m) }
func (*GetAllUserIDReq) ProtoMessage() {}
func (*GetAllUserIDReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{3}
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAllUserIDReq.Unmarshal(m, b)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAllUserIDReq.Marshal(b, m, deterministic)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (dst *GetAllUserIDReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAllUserIDReq.Merge(dst, src)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) XXX_Size() int {
return xxx_messageInfo_GetAllUserIDReq.Size(m)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetAllUserIDReq.DiscardUnknown(m)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
var xxx_messageInfo_GetAllUserIDReq proto.InternalMessageInfo
2021-09-22 20:10:38 +08:00
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) GetOpUserID() string {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-09-22 20:10:38 +08:00
}
return ""
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDReq) GetOperationID() string {
2021-09-22 20:10:38 +08:00
if m != nil {
return m.OperationID
}
return ""
}
2021-12-27 16:48:05 +08:00
type GetAllUserIDResp struct {
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=CommonResp" json:"CommonResp,omitempty"`
UserIDList []string `protobuf:"bytes,2,rep,name=UserIDList" json:"UserIDList,omitempty"`
2021-09-22 20:10:38 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) Reset() { *m = GetAllUserIDResp{} }
func (m *GetAllUserIDResp) String() string { return proto.CompactTextString(m) }
func (*GetAllUserIDResp) ProtoMessage() {}
func (*GetAllUserIDResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{4}
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAllUserIDResp.Unmarshal(m, b)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAllUserIDResp.Marshal(b, m, deterministic)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (dst *GetAllUserIDResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAllUserIDResp.Merge(dst, src)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) XXX_Size() int {
return xxx_messageInfo_GetAllUserIDResp.Size(m)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetAllUserIDResp.DiscardUnknown(m)
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
var xxx_messageInfo_GetAllUserIDResp proto.InternalMessageInfo
2021-09-22 20:10:38 +08:00
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) GetCommonResp() *CommonResp {
2021-09-22 20:10:38 +08:00
if m != nil {
return m.CommonResp
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *GetAllUserIDResp) GetUserIDList() []string {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.UserIDList
2021-09-22 20:10:38 +08:00
}
return nil
}
2021-12-17 14:28:43 +08:00
type AccountCheckReq struct {
2021-12-27 16:48:05 +08:00
CheckUserIDList []string `protobuf:"bytes,1,rep,name=CheckUserIDList" json:"CheckUserIDList,omitempty"`
OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
2021-12-17 14:28:43 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AccountCheckReq) Reset() { *m = AccountCheckReq{} }
func (m *AccountCheckReq) String() string { return proto.CompactTextString(m) }
func (*AccountCheckReq) ProtoMessage() {}
func (*AccountCheckReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{5}
2021-12-17 14:28:43 +08:00
}
func (m *AccountCheckReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AccountCheckReq.Unmarshal(m, b)
}
func (m *AccountCheckReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AccountCheckReq.Marshal(b, m, deterministic)
}
func (dst *AccountCheckReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AccountCheckReq.Merge(dst, src)
}
func (m *AccountCheckReq) XXX_Size() int {
return xxx_messageInfo_AccountCheckReq.Size(m)
}
func (m *AccountCheckReq) XXX_DiscardUnknown() {
xxx_messageInfo_AccountCheckReq.DiscardUnknown(m)
}
var xxx_messageInfo_AccountCheckReq proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *AccountCheckReq) GetCheckUserIDList() []string {
2021-12-17 14:28:43 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CheckUserIDList
2021-12-17 14:28:43 +08:00
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *AccountCheckReq) GetOpUserID() string {
2021-12-17 14:28:43 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-12-17 14:28:43 +08:00
}
return ""
}
func (m *AccountCheckReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type AccountCheckResp struct {
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
2021-12-27 16:48:05 +08:00
ResultList []*AccountCheckResp_SingleUserStatus `protobuf:"bytes,2,rep,name=ResultList" json:"ResultList,omitempty"`
2021-12-17 14:28:43 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AccountCheckResp) Reset() { *m = AccountCheckResp{} }
func (m *AccountCheckResp) String() string { return proto.CompactTextString(m) }
func (*AccountCheckResp) ProtoMessage() {}
func (*AccountCheckResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{6}
2021-12-17 14:28:43 +08:00
}
func (m *AccountCheckResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AccountCheckResp.Unmarshal(m, b)
}
func (m *AccountCheckResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AccountCheckResp.Marshal(b, m, deterministic)
}
func (dst *AccountCheckResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AccountCheckResp.Merge(dst, src)
}
func (m *AccountCheckResp) XXX_Size() int {
return xxx_messageInfo_AccountCheckResp.Size(m)
}
func (m *AccountCheckResp) XXX_DiscardUnknown() {
xxx_messageInfo_AccountCheckResp.DiscardUnknown(m)
}
var xxx_messageInfo_AccountCheckResp proto.InternalMessageInfo
func (m *AccountCheckResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *AccountCheckResp) GetResultList() []*AccountCheckResp_SingleUserStatus {
2021-12-17 14:28:43 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ResultList
2021-12-17 14:28:43 +08:00
}
return nil
}
type AccountCheckResp_SingleUserStatus struct {
UserID string `protobuf:"bytes,1,opt,name=userID" json:"userID,omitempty"`
AccountStatus string `protobuf:"bytes,2,opt,name=accountStatus" json:"accountStatus,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AccountCheckResp_SingleUserStatus) Reset() { *m = AccountCheckResp_SingleUserStatus{} }
func (m *AccountCheckResp_SingleUserStatus) String() string { return proto.CompactTextString(m) }
func (*AccountCheckResp_SingleUserStatus) ProtoMessage() {}
func (*AccountCheckResp_SingleUserStatus) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{6, 0}
2021-12-17 14:28:43 +08:00
}
func (m *AccountCheckResp_SingleUserStatus) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AccountCheckResp_SingleUserStatus.Unmarshal(m, b)
}
func (m *AccountCheckResp_SingleUserStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AccountCheckResp_SingleUserStatus.Marshal(b, m, deterministic)
}
func (dst *AccountCheckResp_SingleUserStatus) XXX_Merge(src proto.Message) {
xxx_messageInfo_AccountCheckResp_SingleUserStatus.Merge(dst, src)
}
func (m *AccountCheckResp_SingleUserStatus) XXX_Size() int {
return xxx_messageInfo_AccountCheckResp_SingleUserStatus.Size(m)
}
func (m *AccountCheckResp_SingleUserStatus) XXX_DiscardUnknown() {
xxx_messageInfo_AccountCheckResp_SingleUserStatus.DiscardUnknown(m)
}
var xxx_messageInfo_AccountCheckResp_SingleUserStatus proto.InternalMessageInfo
func (m *AccountCheckResp_SingleUserStatus) GetUserID() string {
if m != nil {
return m.UserID
}
return ""
}
func (m *AccountCheckResp_SingleUserStatus) GetAccountStatus() string {
if m != nil {
return m.AccountStatus
}
return ""
}
2021-05-26 19:44:49 +08:00
type GetUserInfoReq struct {
2021-09-22 20:10:38 +08:00
UserIDList []string `protobuf:"bytes,1,rep,name=userIDList" json:"userIDList,omitempty"`
2021-12-27 16:48:05 +08:00
OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"`
2021-09-22 20:10:38 +08:00
OperationID string `protobuf:"bytes,3,opt,name=OperationID" json:"OperationID,omitempty"`
2021-05-26 19:44:49 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserInfoReq) Reset() { *m = GetUserInfoReq{} }
func (m *GetUserInfoReq) String() string { return proto.CompactTextString(m) }
func (*GetUserInfoReq) ProtoMessage() {}
func (*GetUserInfoReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{7}
2021-05-26 19:44:49 +08:00
}
func (m *GetUserInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserInfoReq.Unmarshal(m, b)
}
func (m *GetUserInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserInfoReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetUserInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserInfoReq.Merge(dst, src)
2021-05-26 19:44:49 +08:00
}
func (m *GetUserInfoReq) XXX_Size() int {
return xxx_messageInfo_GetUserInfoReq.Size(m)
}
func (m *GetUserInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserInfoReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserInfoReq proto.InternalMessageInfo
func (m *GetUserInfoReq) GetUserIDList() []string {
if m != nil {
return m.UserIDList
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *GetUserInfoReq) GetOpUserID() string {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-05-26 19:44:49 +08:00
}
return ""
}
func (m *GetUserInfoReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type GetUserInfoResp struct {
2021-12-27 16:48:05 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
UserInfoList []*sdk_ws.UserInfo `protobuf:"bytes,3,rep,name=UserInfoList" json:"UserInfoList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:49 +08:00
}
func (m *GetUserInfoResp) Reset() { *m = GetUserInfoResp{} }
func (m *GetUserInfoResp) String() string { return proto.CompactTextString(m) }
func (*GetUserInfoResp) ProtoMessage() {}
func (*GetUserInfoResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{8}
2021-05-26 19:44:49 +08:00
}
func (m *GetUserInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserInfoResp.Unmarshal(m, b)
}
func (m *GetUserInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserInfoResp.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *GetUserInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserInfoResp.Merge(dst, src)
2021-05-26 19:44:49 +08:00
}
func (m *GetUserInfoResp) XXX_Size() int {
return xxx_messageInfo_GetUserInfoResp.Size(m)
}
func (m *GetUserInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserInfoResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserInfoResp proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *GetUserInfoResp) GetCommonResp() *CommonResp {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CommonResp
2021-05-26 19:44:49 +08:00
}
return nil
}
2021-12-27 16:48:05 +08:00
func (m *GetUserInfoResp) GetUserInfoList() []*sdk_ws.UserInfo {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.UserInfoList
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-05-26 19:44:49 +08:00
}
type UpdateUserInfoReq struct {
2021-12-27 16:48:05 +08:00
UserInfo *sdk_ws.UserInfo `protobuf:"bytes,1,opt,name=UserInfo" json:"UserInfo,omitempty"`
OpUserID string `protobuf:"bytes,2,opt,name=OpUserID" json:"OpUserID,omitempty"`
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:49 +08:00
}
func (m *UpdateUserInfoReq) Reset() { *m = UpdateUserInfoReq{} }
func (m *UpdateUserInfoReq) String() string { return proto.CompactTextString(m) }
func (*UpdateUserInfoReq) ProtoMessage() {}
func (*UpdateUserInfoReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{9}
2021-05-26 19:44:49 +08:00
}
func (m *UpdateUserInfoReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateUserInfoReq.Unmarshal(m, b)
}
func (m *UpdateUserInfoReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateUserInfoReq.Marshal(b, m, deterministic)
}
2021-09-22 20:10:38 +08:00
func (dst *UpdateUserInfoReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateUserInfoReq.Merge(dst, src)
2021-05-26 19:44:49 +08:00
}
func (m *UpdateUserInfoReq) XXX_Size() int {
return xxx_messageInfo_UpdateUserInfoReq.Size(m)
}
func (m *UpdateUserInfoReq) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateUserInfoReq.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateUserInfoReq proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoReq) GetUserInfo() *sdk_ws.UserInfo {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.UserInfo
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoReq) GetOpUserID() string {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-05-26 19:44:49 +08:00
}
return ""
}
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoReq) GetOperationID() string {
2021-05-26 19:44:49 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OperationID
2021-05-26 19:44:49 +08:00
}
return ""
}
2021-12-27 16:48:05 +08:00
type UpdateUserInfoResp struct {
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoResp) Reset() { *m = UpdateUserInfoResp{} }
func (m *UpdateUserInfoResp) String() string { return proto.CompactTextString(m) }
func (*UpdateUserInfoResp) ProtoMessage() {}
func (*UpdateUserInfoResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{10}
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateUserInfoResp.Unmarshal(m, b)
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *UpdateUserInfoResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateUserInfoResp.Marshal(b, m, deterministic)
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (dst *UpdateUserInfoResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateUserInfoResp.Merge(dst, src)
}
func (m *UpdateUserInfoResp) XXX_Size() int {
return xxx_messageInfo_UpdateUserInfoResp.Size(m)
}
func (m *UpdateUserInfoResp) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateUserInfoResp.DiscardUnknown(m)
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
var xxx_messageInfo_UpdateUserInfoResp proto.InternalMessageInfo
func (m *UpdateUserInfoResp) GetCommonResp() *CommonResp {
2021-09-22 20:10:38 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CommonResp
2021-09-22 20:10:38 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-09-22 20:10:38 +08:00
}
2021-12-07 14:28:07 +08:00
type SetReceiveMessageOptReq struct {
2021-12-27 16:48:05 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=FromUserID" json:"FromUserID,omitempty"`
2021-12-07 14:28:07 +08:00
Opt int32 `protobuf:"varint,2,opt,name=opt" json:"opt,omitempty"`
2021-12-27 16:48:05 +08:00
ConversationIDList []string `protobuf:"bytes,3,rep,name=conversationIDList" json:"conversationIDList,omitempty"`
2021-12-07 14:28:07 +08:00
OperationID string `protobuf:"bytes,4,opt,name=operationID" json:"operationID,omitempty"`
2021-12-27 16:48:05 +08:00
OpUserID string `protobuf:"bytes,5,opt,name=OpUserID" json:"OpUserID,omitempty"`
2021-12-07 14:28:07 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SetReceiveMessageOptReq) Reset() { *m = SetReceiveMessageOptReq{} }
func (m *SetReceiveMessageOptReq) String() string { return proto.CompactTextString(m) }
func (*SetReceiveMessageOptReq) ProtoMessage() {}
func (*SetReceiveMessageOptReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{11}
2021-12-07 14:28:07 +08:00
}
func (m *SetReceiveMessageOptReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetReceiveMessageOptReq.Unmarshal(m, b)
}
func (m *SetReceiveMessageOptReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetReceiveMessageOptReq.Marshal(b, m, deterministic)
}
func (dst *SetReceiveMessageOptReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetReceiveMessageOptReq.Merge(dst, src)
}
func (m *SetReceiveMessageOptReq) XXX_Size() int {
return xxx_messageInfo_SetReceiveMessageOptReq.Size(m)
}
func (m *SetReceiveMessageOptReq) XXX_DiscardUnknown() {
xxx_messageInfo_SetReceiveMessageOptReq.DiscardUnknown(m)
}
var xxx_messageInfo_SetReceiveMessageOptReq proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *SetReceiveMessageOptReq) GetFromUserID() string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.FromUserID
2021-12-07 14:28:07 +08:00
}
return ""
}
func (m *SetReceiveMessageOptReq) GetOpt() int32 {
if m != nil {
return m.Opt
}
return 0
}
2021-12-27 16:48:05 +08:00
func (m *SetReceiveMessageOptReq) GetConversationIDList() []string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ConversationIDList
2021-12-07 14:28:07 +08:00
}
return nil
}
func (m *SetReceiveMessageOptReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
2021-12-27 16:48:05 +08:00
func (m *SetReceiveMessageOptReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
type OptResult struct {
2021-12-29 15:52:19 +08:00
ConversationID string `protobuf:"bytes,1,opt,name=conversationID" json:"conversationID,omitempty"`
2021-12-27 16:48:05 +08:00
Result int32 `protobuf:"varint,2,opt,name=result" json:"result,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *OptResult) Reset() { *m = OptResult{} }
func (m *OptResult) String() string { return proto.CompactTextString(m) }
func (*OptResult) ProtoMessage() {}
func (*OptResult) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{12}
2021-12-27 16:48:05 +08:00
}
func (m *OptResult) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_OptResult.Unmarshal(m, b)
}
func (m *OptResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_OptResult.Marshal(b, m, deterministic)
}
func (dst *OptResult) XXX_Merge(src proto.Message) {
xxx_messageInfo_OptResult.Merge(dst, src)
}
func (m *OptResult) XXX_Size() int {
return xxx_messageInfo_OptResult.Size(m)
}
func (m *OptResult) XXX_DiscardUnknown() {
xxx_messageInfo_OptResult.DiscardUnknown(m)
}
var xxx_messageInfo_OptResult proto.InternalMessageInfo
2021-12-29 15:52:19 +08:00
func (m *OptResult) GetConversationID() string {
2021-12-27 16:48:05 +08:00
if m != nil {
2021-12-29 15:52:19 +08:00
return m.ConversationID
2021-12-27 16:48:05 +08:00
}
return ""
}
func (m *OptResult) GetResult() int32 {
if m != nil {
return m.Result
}
return 0
}
2021-12-07 14:28:07 +08:00
type SetReceiveMessageOptResp struct {
2021-12-29 15:52:19 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
ConversationOptResultList []*OptResult `protobuf:"bytes,2,rep,name=conversationOptResultList" json:"conversationOptResultList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-07 14:28:07 +08:00
}
func (m *SetReceiveMessageOptResp) Reset() { *m = SetReceiveMessageOptResp{} }
func (m *SetReceiveMessageOptResp) String() string { return proto.CompactTextString(m) }
func (*SetReceiveMessageOptResp) ProtoMessage() {}
func (*SetReceiveMessageOptResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{13}
2021-12-07 14:28:07 +08:00
}
func (m *SetReceiveMessageOptResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SetReceiveMessageOptResp.Unmarshal(m, b)
}
func (m *SetReceiveMessageOptResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SetReceiveMessageOptResp.Marshal(b, m, deterministic)
}
func (dst *SetReceiveMessageOptResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_SetReceiveMessageOptResp.Merge(dst, src)
}
func (m *SetReceiveMessageOptResp) XXX_Size() int {
return xxx_messageInfo_SetReceiveMessageOptResp.Size(m)
}
func (m *SetReceiveMessageOptResp) XXX_DiscardUnknown() {
xxx_messageInfo_SetReceiveMessageOptResp.DiscardUnknown(m)
}
var xxx_messageInfo_SetReceiveMessageOptResp proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *SetReceiveMessageOptResp) GetCommonResp() *CommonResp {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CommonResp
2021-12-07 14:28:07 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-12-07 14:28:07 +08:00
}
2021-12-29 15:52:19 +08:00
func (m *SetReceiveMessageOptResp) GetConversationOptResultList() []*OptResult {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-29 15:52:19 +08:00
return m.ConversationOptResultList
2021-12-07 14:28:07 +08:00
}
return nil
}
type GetReceiveMessageOptReq struct {
2021-12-27 16:48:05 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=FromUserID" json:"FromUserID,omitempty"`
2021-12-29 15:52:19 +08:00
ConversationIDList []string `protobuf:"bytes,2,rep,name=conversationIDList" json:"conversationIDList,omitempty"`
2021-12-07 14:28:07 +08:00
OperationID string `protobuf:"bytes,3,opt,name=operationID" json:"operationID,omitempty"`
2021-12-27 16:48:05 +08:00
OpUserID string `protobuf:"bytes,4,opt,name=OpUserID" json:"OpUserID,omitempty"`
2021-12-07 14:28:07 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetReceiveMessageOptReq) Reset() { *m = GetReceiveMessageOptReq{} }
func (m *GetReceiveMessageOptReq) String() string { return proto.CompactTextString(m) }
func (*GetReceiveMessageOptReq) ProtoMessage() {}
func (*GetReceiveMessageOptReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{14}
2021-12-07 14:28:07 +08:00
}
func (m *GetReceiveMessageOptReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetReceiveMessageOptReq.Unmarshal(m, b)
}
func (m *GetReceiveMessageOptReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetReceiveMessageOptReq.Marshal(b, m, deterministic)
}
func (dst *GetReceiveMessageOptReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetReceiveMessageOptReq.Merge(dst, src)
}
func (m *GetReceiveMessageOptReq) XXX_Size() int {
return xxx_messageInfo_GetReceiveMessageOptReq.Size(m)
}
func (m *GetReceiveMessageOptReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetReceiveMessageOptReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetReceiveMessageOptReq proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *GetReceiveMessageOptReq) GetFromUserID() string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.FromUserID
2021-12-07 14:28:07 +08:00
}
return ""
}
2021-12-29 15:52:19 +08:00
func (m *GetReceiveMessageOptReq) GetConversationIDList() []string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-29 15:52:19 +08:00
return m.ConversationIDList
2021-12-07 14:28:07 +08:00
}
return nil
}
func (m *GetReceiveMessageOptReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
2021-12-27 16:48:05 +08:00
func (m *GetReceiveMessageOptReq) GetOpUserID() string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.OpUserID
2021-12-07 14:28:07 +08:00
}
return ""
}
type GetReceiveMessageOptResp struct {
2021-12-27 16:48:05 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
ConversationOptResultList []*OptResult `protobuf:"bytes,3,rep,name=conversationOptResultList" json:"conversationOptResultList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-07 14:28:07 +08:00
}
func (m *GetReceiveMessageOptResp) Reset() { *m = GetReceiveMessageOptResp{} }
func (m *GetReceiveMessageOptResp) String() string { return proto.CompactTextString(m) }
func (*GetReceiveMessageOptResp) ProtoMessage() {}
func (*GetReceiveMessageOptResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{15}
2021-12-07 14:28:07 +08:00
}
func (m *GetReceiveMessageOptResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetReceiveMessageOptResp.Unmarshal(m, b)
}
func (m *GetReceiveMessageOptResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetReceiveMessageOptResp.Marshal(b, m, deterministic)
}
func (dst *GetReceiveMessageOptResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetReceiveMessageOptResp.Merge(dst, src)
}
func (m *GetReceiveMessageOptResp) XXX_Size() int {
return xxx_messageInfo_GetReceiveMessageOptResp.Size(m)
}
func (m *GetReceiveMessageOptResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetReceiveMessageOptResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetReceiveMessageOptResp proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *GetReceiveMessageOptResp) GetCommonResp() *CommonResp {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CommonResp
2021-12-07 14:28:07 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-12-07 14:28:07 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetReceiveMessageOptResp) GetConversationOptResultList() []*OptResult {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ConversationOptResultList
2021-12-07 14:28:07 +08:00
}
return nil
}
type GetAllConversationMsgOptReq struct {
2021-12-29 15:07:36 +08:00
FromUserID string `protobuf:"bytes,1,opt,name=FromUserID" json:"FromUserID,omitempty"`
2021-12-07 14:28:07 +08:00
OperationID string `protobuf:"bytes,2,opt,name=operationID" json:"operationID,omitempty"`
2021-12-27 16:48:05 +08:00
OpUserID string `protobuf:"bytes,3,opt,name=OpUserID" json:"OpUserID,omitempty"`
2021-12-07 14:28:07 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetAllConversationMsgOptReq) Reset() { *m = GetAllConversationMsgOptReq{} }
func (m *GetAllConversationMsgOptReq) String() string { return proto.CompactTextString(m) }
func (*GetAllConversationMsgOptReq) ProtoMessage() {}
func (*GetAllConversationMsgOptReq) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{16}
2021-12-07 14:28:07 +08:00
}
func (m *GetAllConversationMsgOptReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAllConversationMsgOptReq.Unmarshal(m, b)
}
func (m *GetAllConversationMsgOptReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAllConversationMsgOptReq.Marshal(b, m, deterministic)
}
func (dst *GetAllConversationMsgOptReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAllConversationMsgOptReq.Merge(dst, src)
}
func (m *GetAllConversationMsgOptReq) XXX_Size() int {
return xxx_messageInfo_GetAllConversationMsgOptReq.Size(m)
}
func (m *GetAllConversationMsgOptReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetAllConversationMsgOptReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetAllConversationMsgOptReq proto.InternalMessageInfo
2021-12-29 15:07:36 +08:00
func (m *GetAllConversationMsgOptReq) GetFromUserID() string {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-29 15:07:36 +08:00
return m.FromUserID
2021-12-07 14:28:07 +08:00
}
return ""
}
func (m *GetAllConversationMsgOptReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
2021-12-27 16:48:05 +08:00
func (m *GetAllConversationMsgOptReq) GetOpUserID() string {
if m != nil {
return m.OpUserID
}
return ""
}
2021-12-07 14:28:07 +08:00
type GetAllConversationMsgOptResp struct {
2021-12-27 16:48:05 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
ConversationOptResultList []*OptResult `protobuf:"bytes,3,rep,name=conversationOptResultList" json:"conversationOptResultList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2021-12-07 14:28:07 +08:00
}
func (m *GetAllConversationMsgOptResp) Reset() { *m = GetAllConversationMsgOptResp{} }
func (m *GetAllConversationMsgOptResp) String() string { return proto.CompactTextString(m) }
func (*GetAllConversationMsgOptResp) ProtoMessage() {}
func (*GetAllConversationMsgOptResp) Descriptor() ([]byte, []int) {
2021-12-29 15:52:19 +08:00
return fileDescriptor_user_9cc4371b0c883611, []int{17}
2021-12-07 14:28:07 +08:00
}
func (m *GetAllConversationMsgOptResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetAllConversationMsgOptResp.Unmarshal(m, b)
}
func (m *GetAllConversationMsgOptResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetAllConversationMsgOptResp.Marshal(b, m, deterministic)
}
func (dst *GetAllConversationMsgOptResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetAllConversationMsgOptResp.Merge(dst, src)
}
func (m *GetAllConversationMsgOptResp) XXX_Size() int {
return xxx_messageInfo_GetAllConversationMsgOptResp.Size(m)
}
func (m *GetAllConversationMsgOptResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetAllConversationMsgOptResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetAllConversationMsgOptResp proto.InternalMessageInfo
2021-12-27 16:48:05 +08:00
func (m *GetAllConversationMsgOptResp) GetCommonResp() *CommonResp {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.CommonResp
2021-12-07 14:28:07 +08:00
}
2021-12-27 16:48:05 +08:00
return nil
2021-12-07 14:28:07 +08:00
}
2021-12-27 16:48:05 +08:00
func (m *GetAllConversationMsgOptResp) GetConversationOptResultList() []*OptResult {
2021-12-07 14:28:07 +08:00
if m != nil {
2021-12-27 16:48:05 +08:00
return m.ConversationOptResultList
2021-12-07 14:28:07 +08:00
}
return nil
}
2021-05-26 19:44:49 +08:00
func init() {
proto.RegisterType((*CommonResp)(nil), "user.CommonResp")
2021-09-22 20:10:38 +08:00
proto.RegisterType((*DeleteUsersReq)(nil), "user.DeleteUsersReq")
2021-12-27 16:48:05 +08:00
proto.RegisterType((*DeleteUsersResp)(nil), "user.DeleteUsersResp")
proto.RegisterType((*GetAllUserIDReq)(nil), "user.GetAllUserIDReq")
proto.RegisterType((*GetAllUserIDResp)(nil), "user.GetAllUserIDResp")
2021-12-17 14:28:43 +08:00
proto.RegisterType((*AccountCheckReq)(nil), "user.AccountCheckReq")
proto.RegisterType((*AccountCheckResp)(nil), "user.AccountCheckResp")
proto.RegisterType((*AccountCheckResp_SingleUserStatus)(nil), "user.AccountCheckResp.SingleUserStatus")
2021-05-26 19:44:49 +08:00
proto.RegisterType((*GetUserInfoReq)(nil), "user.GetUserInfoReq")
proto.RegisterType((*GetUserInfoResp)(nil), "user.GetUserInfoResp")
proto.RegisterType((*UpdateUserInfoReq)(nil), "user.UpdateUserInfoReq")
2021-12-27 16:48:05 +08:00
proto.RegisterType((*UpdateUserInfoResp)(nil), "user.UpdateUserInfoResp")
2021-12-07 14:28:07 +08:00
proto.RegisterType((*SetReceiveMessageOptReq)(nil), "user.SetReceiveMessageOptReq")
2021-12-27 16:48:05 +08:00
proto.RegisterType((*OptResult)(nil), "user.OptResult")
2021-12-07 14:28:07 +08:00
proto.RegisterType((*SetReceiveMessageOptResp)(nil), "user.SetReceiveMessageOptResp")
proto.RegisterType((*GetReceiveMessageOptReq)(nil), "user.GetReceiveMessageOptReq")
proto.RegisterType((*GetReceiveMessageOptResp)(nil), "user.GetReceiveMessageOptResp")
proto.RegisterType((*GetAllConversationMsgOptReq)(nil), "user.GetAllConversationMsgOptReq")
proto.RegisterType((*GetAllConversationMsgOptResp)(nil), "user.GetAllConversationMsgOptResp")
2021-05-26 19:44:49 +08:00
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
2021-09-22 20:10:38 +08:00
var _ grpc.ClientConn
2021-05-26 19:44:49 +08:00
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
2021-09-22 20:10:38 +08:00
const _ = grpc.SupportPackageIsVersion4
// Client API for User service
2021-05-26 19:44:49 +08:00
type UserClient interface {
GetUserInfo(ctx context.Context, in *GetUserInfoReq, opts ...grpc.CallOption) (*GetUserInfoResp, error)
2021-12-27 16:48:05 +08:00
UpdateUserInfo(ctx context.Context, in *UpdateUserInfoReq, opts ...grpc.CallOption) (*UpdateUserInfoResp, error)
2021-09-22 20:10:38 +08:00
DeleteUsers(ctx context.Context, in *DeleteUsersReq, opts ...grpc.CallOption) (*DeleteUsersResp, error)
2021-12-27 16:48:05 +08:00
GetAllUserID(ctx context.Context, in *GetAllUserIDReq, opts ...grpc.CallOption) (*GetAllUserIDResp, error)
2021-12-07 14:28:07 +08:00
SetReceiveMessageOpt(ctx context.Context, in *SetReceiveMessageOptReq, opts ...grpc.CallOption) (*SetReceiveMessageOptResp, error)
GetReceiveMessageOpt(ctx context.Context, in *GetReceiveMessageOptReq, opts ...grpc.CallOption) (*GetReceiveMessageOptResp, error)
GetAllConversationMsgOpt(ctx context.Context, in *GetAllConversationMsgOptReq, opts ...grpc.CallOption) (*GetAllConversationMsgOptResp, error)
2021-12-17 14:28:43 +08:00
AccountCheck(ctx context.Context, in *AccountCheckReq, opts ...grpc.CallOption) (*AccountCheckResp, error)
2021-05-26 19:44:49 +08:00
}
type userClient struct {
2021-09-22 20:10:38 +08:00
cc *grpc.ClientConn
2021-05-26 19:44:49 +08:00
}
2021-09-22 20:10:38 +08:00
func NewUserClient(cc *grpc.ClientConn) UserClient {
2021-05-26 19:44:49 +08:00
return &userClient{cc}
}
func (c *userClient) GetUserInfo(ctx context.Context, in *GetUserInfoReq, opts ...grpc.CallOption) (*GetUserInfoResp, error) {
out := new(GetUserInfoResp)
2021-12-27 16:48:05 +08:00
err := grpc.Invoke(ctx, "/user.user/GetUserInfo", in, out, c.cc, opts...)
2021-05-26 19:44:49 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-12-27 16:48:05 +08:00
func (c *userClient) UpdateUserInfo(ctx context.Context, in *UpdateUserInfoReq, opts ...grpc.CallOption) (*UpdateUserInfoResp, error) {
out := new(UpdateUserInfoResp)
2021-09-22 20:10:38 +08:00
err := grpc.Invoke(ctx, "/user.user/UpdateUserInfo", in, out, c.cc, opts...)
2021-05-26 19:44:49 +08:00
if err != nil {
return nil, err
}
return out, nil
}
2021-09-22 20:10:38 +08:00
func (c *userClient) DeleteUsers(ctx context.Context, in *DeleteUsersReq, opts ...grpc.CallOption) (*DeleteUsersResp, error) {
out := new(DeleteUsersResp)
err := grpc.Invoke(ctx, "/user.user/DeleteUsers", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
2021-05-26 19:44:49 +08:00
}
2021-12-27 16:48:05 +08:00
func (c *userClient) GetAllUserID(ctx context.Context, in *GetAllUserIDReq, opts ...grpc.CallOption) (*GetAllUserIDResp, error) {
out := new(GetAllUserIDResp)
err := grpc.Invoke(ctx, "/user.user/GetAllUserID", in, out, c.cc, opts...)
2021-09-22 20:10:38 +08:00
if err != nil {
return nil, err
}
return out, nil
2021-05-26 19:44:49 +08:00
}
2021-12-07 14:28:07 +08:00
func (c *userClient) SetReceiveMessageOpt(ctx context.Context, in *SetReceiveMessageOptReq, opts ...grpc.CallOption) (*SetReceiveMessageOptResp, error) {
out := new(SetReceiveMessageOptResp)
err := grpc.Invoke(ctx, "/user.user/SetReceiveMessageOpt", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userClient) GetReceiveMessageOpt(ctx context.Context, in *GetReceiveMessageOptReq, opts ...grpc.CallOption) (*GetReceiveMessageOptResp, error) {
out := new(GetReceiveMessageOptResp)
err := grpc.Invoke(ctx, "/user.user/GetReceiveMessageOpt", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *userClient) GetAllConversationMsgOpt(ctx context.Context, in *GetAllConversationMsgOptReq, opts ...grpc.CallOption) (*GetAllConversationMsgOptResp, error) {
out := new(GetAllConversationMsgOptResp)
err := grpc.Invoke(ctx, "/user.user/GetAllConversationMsgOpt", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
2021-12-17 14:28:43 +08:00
func (c *userClient) AccountCheck(ctx context.Context, in *AccountCheckReq, opts ...grpc.CallOption) (*AccountCheckResp, error) {
out := new(AccountCheckResp)
err := grpc.Invoke(ctx, "/user.user/AccountCheck", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
2021-09-22 20:10:38 +08:00
// Server API for User service
type UserServer interface {
GetUserInfo(context.Context, *GetUserInfoReq) (*GetUserInfoResp, error)
2021-12-27 16:48:05 +08:00
UpdateUserInfo(context.Context, *UpdateUserInfoReq) (*UpdateUserInfoResp, error)
2021-09-22 20:10:38 +08:00
DeleteUsers(context.Context, *DeleteUsersReq) (*DeleteUsersResp, error)
2021-12-27 16:48:05 +08:00
GetAllUserID(context.Context, *GetAllUserIDReq) (*GetAllUserIDResp, error)
2021-12-07 14:28:07 +08:00
SetReceiveMessageOpt(context.Context, *SetReceiveMessageOptReq) (*SetReceiveMessageOptResp, error)
GetReceiveMessageOpt(context.Context, *GetReceiveMessageOptReq) (*GetReceiveMessageOptResp, error)
GetAllConversationMsgOpt(context.Context, *GetAllConversationMsgOptReq) (*GetAllConversationMsgOptResp, error)
2021-12-17 14:28:43 +08:00
AccountCheck(context.Context, *AccountCheckReq) (*AccountCheckResp, error)
2021-05-26 19:44:49 +08:00
}
func RegisterUserServer(s *grpc.Server, srv UserServer) {
s.RegisterService(&_User_serviceDesc, srv)
}
func _User_GetUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).GetUserInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/GetUserInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).GetUserInfo(ctx, req.(*GetUserInfoReq))
}
return interceptor(ctx, in, info, handler)
}
func _User_UpdateUserInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UpdateUserInfoReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).UpdateUserInfo(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/UpdateUserInfo",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).UpdateUserInfo(ctx, req.(*UpdateUserInfoReq))
}
return interceptor(ctx, in, info, handler)
}
2021-09-22 20:10:38 +08:00
func _User_DeleteUsers_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(DeleteUsersReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).DeleteUsers(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/DeleteUsers",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).DeleteUsers(ctx, req.(*DeleteUsersReq))
}
return interceptor(ctx, in, info, handler)
}
2021-12-27 16:48:05 +08:00
func _User_GetAllUserID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAllUserIDReq)
2021-09-22 20:10:38 +08:00
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
2021-12-27 16:48:05 +08:00
return srv.(UserServer).GetAllUserID(ctx, in)
2021-09-22 20:10:38 +08:00
}
info := &grpc.UnaryServerInfo{
Server: srv,
2021-12-27 16:48:05 +08:00
FullMethod: "/user.user/GetAllUserID",
2021-09-22 20:10:38 +08:00
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
2021-12-27 16:48:05 +08:00
return srv.(UserServer).GetAllUserID(ctx, req.(*GetAllUserIDReq))
2021-09-22 20:10:38 +08:00
}
return interceptor(ctx, in, info, handler)
}
2021-12-07 14:28:07 +08:00
func _User_SetReceiveMessageOpt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetReceiveMessageOptReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).SetReceiveMessageOpt(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/SetReceiveMessageOpt",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).SetReceiveMessageOpt(ctx, req.(*SetReceiveMessageOptReq))
}
return interceptor(ctx, in, info, handler)
}
func _User_GetReceiveMessageOpt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetReceiveMessageOptReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).GetReceiveMessageOpt(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/GetReceiveMessageOpt",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).GetReceiveMessageOpt(ctx, req.(*GetReceiveMessageOptReq))
}
return interceptor(ctx, in, info, handler)
}
func _User_GetAllConversationMsgOpt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetAllConversationMsgOptReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).GetAllConversationMsgOpt(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/GetAllConversationMsgOpt",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).GetAllConversationMsgOpt(ctx, req.(*GetAllConversationMsgOptReq))
}
return interceptor(ctx, in, info, handler)
}
2021-12-17 14:28:43 +08:00
func _User_AccountCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AccountCheckReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(UserServer).AccountCheck(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/user.user/AccountCheck",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(UserServer).AccountCheck(ctx, req.(*AccountCheckReq))
}
return interceptor(ctx, in, info, handler)
}
2021-05-26 19:44:49 +08:00
var _User_serviceDesc = grpc.ServiceDesc{
ServiceName: "user.user",
HandlerType: (*UserServer)(nil),
Methods: []grpc.MethodDesc{
{
2021-12-27 16:48:05 +08:00
MethodName: "GetUserInfo",
2021-05-26 19:44:49 +08:00
Handler: _User_GetUserInfo_Handler,
},
{
MethodName: "UpdateUserInfo",
Handler: _User_UpdateUserInfo_Handler,
},
2021-09-22 20:10:38 +08:00
{
MethodName: "DeleteUsers",
Handler: _User_DeleteUsers_Handler,
},
{
2021-12-27 16:48:05 +08:00
MethodName: "GetAllUserID",
Handler: _User_GetAllUserID_Handler,
2021-09-22 20:10:38 +08:00
},
2021-12-07 14:28:07 +08:00
{
MethodName: "SetReceiveMessageOpt",
Handler: _User_SetReceiveMessageOpt_Handler,
},
{
MethodName: "GetReceiveMessageOpt",
Handler: _User_GetReceiveMessageOpt_Handler,
},
{
MethodName: "GetAllConversationMsgOpt",
Handler: _User_GetAllConversationMsgOpt_Handler,
},
2021-12-17 14:28:43 +08:00
{
MethodName: "AccountCheck",
Handler: _User_AccountCheck_Handler,
},
2021-05-26 19:44:49 +08:00
},
Streams: []grpc.StreamDesc{},
Metadata: "user/user.proto",
}
2021-09-22 20:10:38 +08:00
2021-12-29 15:52:19 +08:00
func init() { proto.RegisterFile("user/user.proto", fileDescriptor_user_9cc4371b0c883611) }
2021-12-29 11:31:51 +08:00
2021-12-29 15:52:19 +08:00
var fileDescriptor_user_9cc4371b0c883611 = []byte{
// 812 bytes of a gzipped FileDescriptorProto
2021-12-29 11:31:51 +08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcd, 0x6e, 0xd3, 0x4a,
2021-12-29 15:52:19 +08:00
0x14, 0x96, 0xe3, 0xb4, 0xb7, 0x39, 0x69, 0x13, 0xdf, 0x51, 0x7f, 0x7c, 0x7d, 0xa1, 0x4a, 0x47,
0x08, 0xa2, 0x2e, 0x1c, 0x28, 0x2b, 0x40, 0x20, 0x95, 0x54, 0xb5, 0x2a, 0x88, 0x82, 0x5c, 0x75,
0xc3, 0xa6, 0x32, 0xc9, 0x10, 0xa2, 0x24, 0x1e, 0xe3, 0x71, 0x5a, 0x01, 0x12, 0x2b, 0xde, 0x82,
0x05, 0x4b, 0x9e, 0x81, 0xd7, 0xe0, 0x05, 0x78, 0x15, 0xe4, 0x19, 0xdb, 0x19, 0xff, 0x24, 0x2d,
0x41, 0x42, 0x6c, 0x2c, 0xcf, 0x99, 0x33, 0x67, 0xbe, 0xef, 0x3b, 0x67, 0x66, 0x0e, 0xd4, 0xa7,
0x8c, 0xf8, 0xad, 0xf0, 0x63, 0x7a, 0x3e, 0x0d, 0x28, 0x2a, 0x87, 0xff, 0xc6, 0x5e, 0xd7, 0x23,
0xee, 0xf9, 0x49, 0xa7, 0xe5, 0x8d, 0x06, 0x2d, 0x3e, 0xd1, 0x62, 0xfd, 0xd1, 0xf9, 0x25, 0x6b,
0x5d, 0x32, 0xe1, 0x88, 0x9f, 0x00, 0xb4, 0xe9, 0x64, 0x42, 0x5d, 0x9b, 0x30, 0x0f, 0xe9, 0xf0,
0x0f, 0xf1, 0xfd, 0x36, 0xed, 0x13, 0x5d, 0x69, 0x28, 0xcd, 0x15, 0x3b, 0x1e, 0xa2, 0x6d, 0x58,
0x25, 0xbe, 0xdf, 0x61, 0x03, 0xbd, 0xd4, 0x50, 0x9a, 0x15, 0x3b, 0x1a, 0xe1, 0xf7, 0x50, 0x3b,
0x22, 0x63, 0x12, 0x90, 0x33, 0x46, 0x7c, 0x66, 0x93, 0xb7, 0x68, 0x1f, 0xb4, 0x99, 0xe5, 0xe4,
0xe8, 0xf9, 0x90, 0x05, 0x7a, 0xa9, 0xa1, 0x36, 0x2b, 0x76, 0xce, 0x8e, 0x0c, 0x58, 0xeb, 0x7a,
0x62, 0xac, 0xab, 0x3c, 0x6e, 0x32, 0x46, 0x0d, 0xa8, 0x76, 0x3d, 0xe2, 0x3b, 0xc1, 0x90, 0xba,
0x27, 0x47, 0x7a, 0x99, 0x4f, 0xcb, 0x26, 0x4c, 0xa1, 0x9e, 0xda, 0x9b, 0x79, 0xe8, 0xae, 0x4c,
0x87, 0x73, 0xa8, 0x1e, 0x68, 0x26, 0x17, 0x66, 0x66, 0xb7, 0x65, 0xca, 0xfb, 0xa0, 0x1d, 0x3b,
0xc3, 0x31, 0xe9, 0xe7, 0xe1, 0x66, 0xed, 0xb8, 0x0b, 0x75, 0x8b, 0x04, 0x87, 0xe3, 0xb1, 0xb0,
0x85, 0x6c, 0x0d, 0x58, 0xa3, 0x31, 0x03, 0x45, 0x30, 0xa0, 0x12, 0x03, 0x2a, 0x31, 0x10, 0xc2,
0xc9, 0x26, 0xdc, 0x07, 0x2d, 0x1d, 0x70, 0x29, 0x0a, 0xbb, 0x00, 0x39, 0xf0, 0x92, 0x05, 0xbf,
0x83, 0xfa, 0x61, 0xaf, 0x47, 0xa7, 0x6e, 0xd0, 0x7e, 0x43, 0x7a, 0xa3, 0x10, 0x76, 0x13, 0xea,
0xfc, 0x5f, 0x5a, 0xa7, 0xf0, 0x75, 0x59, 0x73, 0x2a, 0x45, 0xa5, 0xc5, 0x29, 0x52, 0xf3, 0x29,
0xfa, 0xa1, 0x80, 0x96, 0xde, 0x5b, 0x30, 0xec, 0x5d, 0x83, 0xe1, 0xcc, 0x07, 0x59, 0x00, 0x36,
0x61, 0xd3, 0x71, 0x90, 0x30, 0xac, 0x1e, 0xdc, 0x11, 0x2b, 0xb2, 0xd1, 0xcd, 0xd3, 0xa1, 0x3b,
0x18, 0xf3, 0x92, 0x38, 0x0d, 0x9c, 0x60, 0xca, 0x6c, 0x69, 0xa9, 0xf1, 0x02, 0xb4, 0xec, 0x7c,
0x58, 0xda, 0x53, 0x39, 0x81, 0xd1, 0x08, 0xdd, 0x82, 0x0d, 0x47, 0x04, 0x17, 0x8e, 0x11, 0xfd,
0xb4, 0x11, 0xbb, 0x50, 0xb3, 0x48, 0xc0, 0x05, 0x71, 0x5f, 0xd3, 0x50, 0xdb, 0x5d, 0x80, 0x69,
0x56, 0x56, 0xc9, 0xf2, 0x9b, 0x8a, 0x7e, 0xe4, 0x35, 0x38, 0xdb, 0x6f, 0x29, 0x3d, 0x1f, 0xc0,
0x7a, 0x1c, 0x81, 0x83, 0x54, 0xb9, 0xa2, 0x5b, 0x26, 0x0d, 0xef, 0x8b, 0xe1, 0xe4, 0x9c, 0xf5,
0x47, 0x66, 0xb2, 0x45, 0xca, 0x15, 0x7f, 0x52, 0xe0, 0xdf, 0x33, 0xaf, 0xef, 0x44, 0xe7, 0x38,
0xe2, 0x7c, 0x0f, 0xd6, 0xe2, 0x61, 0x04, 0x60, 0x4e, 0xb0, 0xc4, 0xed, 0x2a, 0x19, 0x68, 0x5e,
0x06, 0xf9, 0xe4, 0x1c, 0x03, 0xca, 0xa2, 0x58, 0x46, 0x09, 0xfc, 0x4d, 0x81, 0x9d, 0x53, 0x12,
0xd8, 0xa4, 0x47, 0x86, 0x17, 0xa4, 0x43, 0x18, 0x73, 0x06, 0xa4, 0xeb, 0x05, 0x51, 0x22, 0x8f,
0x7d, 0x3a, 0x49, 0x9d, 0x6e, 0xc9, 0x82, 0x34, 0x50, 0xa9, 0x17, 0x70, 0xf0, 0x2b, 0x76, 0xf8,
0x8b, 0x4c, 0x40, 0x3d, 0xea, 0x5e, 0x10, 0x9f, 0x45, 0x38, 0x13, 0x75, 0x2b, 0x76, 0xc1, 0x4c,
0x96, 0x67, 0x39, 0xc7, 0x33, 0xa5, 0xd2, 0x4a, 0x5a, 0x25, 0xfc, 0x0c, 0x2a, 0x1c, 0x69, 0x58,
0xdd, 0xe8, 0x36, 0xd4, 0xd2, 0x1b, 0x44, 0x80, 0x33, 0xd6, 0xb0, 0xda, 0x7d, 0xbe, 0x22, 0xc2,
0x1d, 0x8d, 0xf0, 0x67, 0x05, 0xf4, 0x62, 0x21, 0x96, 0xaa, 0xb0, 0x0e, 0xfc, 0x27, 0x6f, 0x9c,
0xe0, 0x94, 0x0e, 0x70, 0x5d, 0x04, 0x48, 0xa6, 0xec, 0xf9, 0x2b, 0xf0, 0x57, 0x05, 0x76, 0xac,
0x25, 0xd3, 0x54, 0x9c, 0x94, 0xd2, 0x75, 0x93, 0xa2, 0x2e, 0x4e, 0x4a, 0x39, 0x93, 0x94, 0x50,
0x47, 0xeb, 0x0f, 0xe9, 0xa8, 0xfe, 0xb2, 0x8e, 0x1f, 0xe0, 0x7f, 0xf1, 0xe0, 0xb4, 0x25, 0x97,
0x0e, 0x1b, 0x5c, 0x53, 0xca, 0x2b, 0x5f, 0xb4, 0x45, 0x2f, 0x3a, 0xfe, 0xa2, 0xc0, 0x8d, 0xf9,
0xbb, 0xff, 0x05, 0xf2, 0x1c, 0x7c, 0x2f, 0x03, 0xef, 0x9c, 0xd0, 0x43, 0xa8, 0x4a, 0xb7, 0x2c,
0xda, 0x14, 0x31, 0xd2, 0x17, 0xbd, 0xb1, 0x55, 0x60, 0x65, 0x1e, 0x6a, 0x43, 0x2d, 0x7d, 0x35,
0xa1, 0x1d, 0xe1, 0x98, 0xbb, 0x36, 0x0d, 0xbd, 0x78, 0x82, 0x79, 0x21, 0x00, 0xa9, 0xb7, 0x89,
0x01, 0xa4, 0x5b, 0xad, 0x18, 0x40, 0xb6, 0x09, 0x7a, 0x0c, 0xeb, 0x72, 0x57, 0x81, 0x66, 0x38,
0xe5, 0xd6, 0xc5, 0xd8, 0x2e, 0x32, 0x33, 0x0f, 0x9d, 0xc1, 0x66, 0xd1, 0x45, 0x80, 0x6e, 0x0a,
0xff, 0x39, 0xb7, 0xa5, 0xb1, 0xbb, 0x68, 0x5a, 0x84, 0xb5, 0x16, 0x84, 0xb5, 0x16, 0x87, 0x9d,
0x7b, 0xa4, 0x1c, 0x7e, 0xdc, 0x0a, 0x6b, 0x0a, 0xed, 0xc9, 0x0c, 0x0b, 0x2b, 0xde, 0xc0, 0x57,
0xb9, 0x08, 0x3d, 0xe5, 0x2e, 0x23, 0xd6, 0x33, 0xd3, 0x53, 0xc5, 0x7a, 0x66, 0x1b, 0x92, 0xa7,
0x1b, 0x2f, 0xab, 0x26, 0xef, 0xcd, 0x1f, 0x85, 0x9f, 0x57, 0xab, 0xbc, 0xf1, 0xbe, 0xff, 0x33,
0x00, 0x00, 0xff, 0xff, 0xaa, 0x27, 0xa9, 0x62, 0xb4, 0x0b, 0x00, 0x00,
2021-09-22 20:10:38 +08:00
}