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

2013 lines
75 KiB
Go
Raw Normal View History

2022-02-12 17:13:31 +08:00
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: admin_cms/admin_cms.proto
2022-08-12 18:37:51 +08:00
package admin_cms // import "./admin_cms"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import sdk_ws "Open_IM/pkg/proto/sdk_ws"
2022-02-12 17:13:31 +08:00
import (
2022-08-12 18:37:51 +08:00
context "golang.org/x/net/context"
2022-02-12 17:13:31 +08:00
grpc "google.golang.org/grpc"
)
2022-08-12 18:37:51 +08:00
// 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.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
2022-02-12 17:13:31 +08:00
2022-08-26 17:51:01 +08:00
type CommonResp struct {
ErrCode int32 `protobuf:"varint,1,opt,name=errCode" json:"errCode,omitempty"`
ErrMsg string `protobuf:"bytes,2,opt,name=errMsg" json:"errMsg,omitempty"`
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) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{0}
2022-08-26 17:51:01 +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)
}
func (dst *CommonResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_CommonResp.Merge(dst, src)
}
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
func (m *CommonResp) GetErrCode() int32 {
if m != nil {
return m.ErrCode
}
return 0
}
func (m *CommonResp) GetErrMsg() string {
if m != nil {
return m.ErrMsg
}
return ""
}
2022-02-12 17:13:31 +08:00
type AdminLoginReq struct {
2022-08-12 18:37:51 +08:00
OperationID string `protobuf:"bytes,1,opt,name=OperationID" json:"OperationID,omitempty"`
AdminID string `protobuf:"bytes,2,opt,name=AdminID" json:"AdminID,omitempty"`
Secret string `protobuf:"bytes,3,opt,name=Secret" json:"Secret,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2022-02-12 17:13:31 +08:00
2022-08-12 18:37:51 +08:00
func (m *AdminLoginReq) Reset() { *m = AdminLoginReq{} }
func (m *AdminLoginReq) String() string { return proto.CompactTextString(m) }
func (*AdminLoginReq) ProtoMessage() {}
func (*AdminLoginReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{1}
2022-08-12 18:37:51 +08:00
}
func (m *AdminLoginReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AdminLoginReq.Unmarshal(m, b)
}
func (m *AdminLoginReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AdminLoginReq.Marshal(b, m, deterministic)
}
func (dst *AdminLoginReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AdminLoginReq.Merge(dst, src)
}
func (m *AdminLoginReq) XXX_Size() int {
return xxx_messageInfo_AdminLoginReq.Size(m)
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *AdminLoginReq) XXX_DiscardUnknown() {
xxx_messageInfo_AdminLoginReq.DiscardUnknown(m)
}
var xxx_messageInfo_AdminLoginReq proto.InternalMessageInfo
2022-02-12 17:13:31 +08:00
2022-08-12 18:37:51 +08:00
func (m *AdminLoginReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *AdminLoginReq) GetAdminID() string {
if m != nil {
return m.AdminID
}
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *AdminLoginReq) GetSecret() string {
if m != nil {
return m.Secret
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
type AdminLoginResp struct {
2022-08-26 17:51:01 +08:00
Token string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,2,opt,name=commonResp" json:"commonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *AdminLoginResp) Reset() { *m = AdminLoginResp{} }
func (m *AdminLoginResp) String() string { return proto.CompactTextString(m) }
func (*AdminLoginResp) ProtoMessage() {}
func (*AdminLoginResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{2}
2022-08-12 18:37:51 +08:00
}
func (m *AdminLoginResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AdminLoginResp.Unmarshal(m, b)
}
func (m *AdminLoginResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AdminLoginResp.Marshal(b, m, deterministic)
}
func (dst *AdminLoginResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AdminLoginResp.Merge(dst, src)
}
func (m *AdminLoginResp) XXX_Size() int {
return xxx_messageInfo_AdminLoginResp.Size(m)
}
func (m *AdminLoginResp) XXX_DiscardUnknown() {
xxx_messageInfo_AdminLoginResp.DiscardUnknown(m)
}
var xxx_messageInfo_AdminLoginResp proto.InternalMessageInfo
func (m *AdminLoginResp) GetToken() string {
if m != nil {
return m.Token
2022-02-12 17:13:31 +08:00
}
return ""
}
2022-08-26 17:51:01 +08:00
func (m *AdminLoginResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
2022-08-12 18:37:51 +08:00
type AddUserRegisterAddFriendIDListReq struct {
OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"`
UserIDList []string `protobuf:"bytes,2,rep,name=userIDList" json:"userIDList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AddUserRegisterAddFriendIDListReq) Reset() { *m = AddUserRegisterAddFriendIDListReq{} }
func (m *AddUserRegisterAddFriendIDListReq) String() string { return proto.CompactTextString(m) }
func (*AddUserRegisterAddFriendIDListReq) ProtoMessage() {}
func (*AddUserRegisterAddFriendIDListReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{3}
2022-08-12 18:37:51 +08:00
}
func (m *AddUserRegisterAddFriendIDListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddUserRegisterAddFriendIDListReq.Unmarshal(m, b)
}
func (m *AddUserRegisterAddFriendIDListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddUserRegisterAddFriendIDListReq.Marshal(b, m, deterministic)
}
func (dst *AddUserRegisterAddFriendIDListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddUserRegisterAddFriendIDListReq.Merge(dst, src)
}
func (m *AddUserRegisterAddFriendIDListReq) XXX_Size() int {
return xxx_messageInfo_AddUserRegisterAddFriendIDListReq.Size(m)
}
func (m *AddUserRegisterAddFriendIDListReq) XXX_DiscardUnknown() {
xxx_messageInfo_AddUserRegisterAddFriendIDListReq.DiscardUnknown(m)
}
var xxx_messageInfo_AddUserRegisterAddFriendIDListReq proto.InternalMessageInfo
func (m *AddUserRegisterAddFriendIDListReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-02-12 17:13:31 +08:00
}
return ""
}
2022-08-12 18:37:51 +08:00
func (m *AddUserRegisterAddFriendIDListReq) GetUserIDList() []string {
if m != nil {
return m.UserIDList
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
return nil
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
type AddUserRegisterAddFriendIDListResp struct {
2022-08-26 17:51:01 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-08-12 18:37:51 +08:00
}
2022-02-12 17:13:31 +08:00
2022-08-12 18:37:51 +08:00
func (m *AddUserRegisterAddFriendIDListResp) Reset() { *m = AddUserRegisterAddFriendIDListResp{} }
func (m *AddUserRegisterAddFriendIDListResp) String() string { return proto.CompactTextString(m) }
func (*AddUserRegisterAddFriendIDListResp) ProtoMessage() {}
func (*AddUserRegisterAddFriendIDListResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{4}
2022-08-12 18:37:51 +08:00
}
func (m *AddUserRegisterAddFriendIDListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AddUserRegisterAddFriendIDListResp.Unmarshal(m, b)
}
func (m *AddUserRegisterAddFriendIDListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AddUserRegisterAddFriendIDListResp.Marshal(b, m, deterministic)
}
func (dst *AddUserRegisterAddFriendIDListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_AddUserRegisterAddFriendIDListResp.Merge(dst, src)
}
func (m *AddUserRegisterAddFriendIDListResp) XXX_Size() int {
return xxx_messageInfo_AddUserRegisterAddFriendIDListResp.Size(m)
}
func (m *AddUserRegisterAddFriendIDListResp) XXX_DiscardUnknown() {
xxx_messageInfo_AddUserRegisterAddFriendIDListResp.DiscardUnknown(m)
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
var xxx_messageInfo_AddUserRegisterAddFriendIDListResp proto.InternalMessageInfo
2022-08-26 17:51:01 +08:00
func (m *AddUserRegisterAddFriendIDListResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
2022-08-12 18:37:51 +08:00
type ReduceUserRegisterAddFriendIDListReq struct {
OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"`
Operation int32 `protobuf:"varint,2,opt,name=operation" json:"operation,omitempty"`
UserIDList []string `protobuf:"bytes,3,rep,name=userIDList" json:"userIDList,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *ReduceUserRegisterAddFriendIDListReq) Reset() { *m = ReduceUserRegisterAddFriendIDListReq{} }
func (m *ReduceUserRegisterAddFriendIDListReq) String() string { return proto.CompactTextString(m) }
func (*ReduceUserRegisterAddFriendIDListReq) ProtoMessage() {}
func (*ReduceUserRegisterAddFriendIDListReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{5}
2022-08-12 18:37:51 +08:00
}
func (m *ReduceUserRegisterAddFriendIDListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq.Unmarshal(m, b)
}
func (m *ReduceUserRegisterAddFriendIDListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq.Marshal(b, m, deterministic)
}
func (dst *ReduceUserRegisterAddFriendIDListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq.Merge(dst, src)
}
func (m *ReduceUserRegisterAddFriendIDListReq) XXX_Size() int {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq.Size(m)
}
func (m *ReduceUserRegisterAddFriendIDListReq) XXX_DiscardUnknown() {
xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq.DiscardUnknown(m)
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
var xxx_messageInfo_ReduceUserRegisterAddFriendIDListReq proto.InternalMessageInfo
2022-02-12 17:13:31 +08:00
2022-08-12 18:37:51 +08:00
func (m *ReduceUserRegisterAddFriendIDListReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *ReduceUserRegisterAddFriendIDListReq) GetOperation() int32 {
if m != nil {
return m.Operation
}
return 0
}
func (m *ReduceUserRegisterAddFriendIDListReq) GetUserIDList() []string {
if m != nil {
return m.UserIDList
}
return nil
}
type ReduceUserRegisterAddFriendIDListResp struct {
2022-08-26 17:51:01 +08:00
CommonResp *CommonResp `protobuf:"bytes,1,opt,name=commonResp" json:"commonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-08-12 18:37:51 +08:00
}
func (m *ReduceUserRegisterAddFriendIDListResp) Reset() { *m = ReduceUserRegisterAddFriendIDListResp{} }
func (m *ReduceUserRegisterAddFriendIDListResp) String() string { return proto.CompactTextString(m) }
func (*ReduceUserRegisterAddFriendIDListResp) ProtoMessage() {}
func (*ReduceUserRegisterAddFriendIDListResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{6}
2022-02-12 17:13:31 +08:00
}
2022-08-12 18:37:51 +08:00
func (m *ReduceUserRegisterAddFriendIDListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp.Unmarshal(m, b)
}
func (m *ReduceUserRegisterAddFriendIDListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp.Marshal(b, m, deterministic)
}
func (dst *ReduceUserRegisterAddFriendIDListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp.Merge(dst, src)
}
func (m *ReduceUserRegisterAddFriendIDListResp) XXX_Size() int {
return xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp.Size(m)
}
func (m *ReduceUserRegisterAddFriendIDListResp) XXX_DiscardUnknown() {
xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp.DiscardUnknown(m)
}
var xxx_messageInfo_ReduceUserRegisterAddFriendIDListResp proto.InternalMessageInfo
2022-02-12 17:13:31 +08:00
2022-08-26 17:51:01 +08:00
func (m *ReduceUserRegisterAddFriendIDListResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
2022-08-12 18:37:51 +08:00
type GetUserRegisterAddFriendIDListReq struct {
OperationID string `protobuf:"bytes,1,opt,name=operationID" json:"operationID,omitempty"`
2022-08-26 17:51:01 +08:00
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"`
2022-08-12 18:37:51 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserRegisterAddFriendIDListReq) Reset() { *m = GetUserRegisterAddFriendIDListReq{} }
func (m *GetUserRegisterAddFriendIDListReq) String() string { return proto.CompactTextString(m) }
func (*GetUserRegisterAddFriendIDListReq) ProtoMessage() {}
func (*GetUserRegisterAddFriendIDListReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{7}
2022-08-12 18:37:51 +08:00
}
func (m *GetUserRegisterAddFriendIDListReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserRegisterAddFriendIDListReq.Unmarshal(m, b)
}
func (m *GetUserRegisterAddFriendIDListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserRegisterAddFriendIDListReq.Marshal(b, m, deterministic)
}
func (dst *GetUserRegisterAddFriendIDListReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserRegisterAddFriendIDListReq.Merge(dst, src)
}
func (m *GetUserRegisterAddFriendIDListReq) XXX_Size() int {
return xxx_messageInfo_GetUserRegisterAddFriendIDListReq.Size(m)
}
func (m *GetUserRegisterAddFriendIDListReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserRegisterAddFriendIDListReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserRegisterAddFriendIDListReq proto.InternalMessageInfo
func (m *GetUserRegisterAddFriendIDListReq) GetOperationID() string {
if m != nil {
return m.OperationID
2022-02-12 17:13:31 +08:00
}
return ""
}
2022-08-12 18:37:51 +08:00
func (m *GetUserRegisterAddFriendIDListReq) GetPagination() *sdk_ws.RequestPagination {
if m != nil {
return m.Pagination
}
return nil
}
2022-02-12 17:13:31 +08:00
2022-08-12 18:37:51 +08:00
type GetUserRegisterAddFriendIDListResp struct {
2022-08-26 17:51:01 +08:00
UserInfoList []*sdk_ws.UserInfo `protobuf:"bytes,1,rep,name=userInfoList" json:"userInfoList,omitempty"`
Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=pagination" json:"pagination,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,3,opt,name=commonResp" json:"commonResp,omitempty"`
2022-08-12 18:37:51 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserRegisterAddFriendIDListResp) Reset() { *m = GetUserRegisterAddFriendIDListResp{} }
func (m *GetUserRegisterAddFriendIDListResp) String() string { return proto.CompactTextString(m) }
func (*GetUserRegisterAddFriendIDListResp) ProtoMessage() {}
func (*GetUserRegisterAddFriendIDListResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{8}
2022-08-12 18:37:51 +08:00
}
func (m *GetUserRegisterAddFriendIDListResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserRegisterAddFriendIDListResp.Unmarshal(m, b)
}
func (m *GetUserRegisterAddFriendIDListResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserRegisterAddFriendIDListResp.Marshal(b, m, deterministic)
}
func (dst *GetUserRegisterAddFriendIDListResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserRegisterAddFriendIDListResp.Merge(dst, src)
}
func (m *GetUserRegisterAddFriendIDListResp) XXX_Size() int {
return xxx_messageInfo_GetUserRegisterAddFriendIDListResp.Size(m)
}
func (m *GetUserRegisterAddFriendIDListResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserRegisterAddFriendIDListResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserRegisterAddFriendIDListResp proto.InternalMessageInfo
func (m *GetUserRegisterAddFriendIDListResp) GetUserInfoList() []*sdk_ws.UserInfo {
if m != nil {
return m.UserInfoList
}
return nil
}
func (m *GetUserRegisterAddFriendIDListResp) GetPagination() *sdk_ws.ResponsePagination {
if m != nil {
return m.Pagination
}
return nil
}
2022-08-26 17:51:01 +08:00
func (m *GetUserRegisterAddFriendIDListResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
type GetChatLogsReq struct {
Content string `protobuf:"bytes,1,opt,name=Content" json:"Content,omitempty"`
SendID string `protobuf:"bytes,2,opt,name=SendID" json:"SendID,omitempty"`
RecvID string `protobuf:"bytes,3,opt,name=RecvID" json:"RecvID,omitempty"`
SendTime string `protobuf:"bytes,4,opt,name=SendTime" json:"SendTime,omitempty"`
SessionType int32 `protobuf:"varint,5,opt,name=SessionType" json:"SessionType,omitempty"`
ContentType int32 `protobuf:"varint,6,opt,name=ContentType" json:"ContentType,omitempty"`
Pagination *sdk_ws.RequestPagination `protobuf:"bytes,7,opt,name=Pagination" json:"Pagination,omitempty"`
OperationID string `protobuf:"bytes,8,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
2022-02-12 17:13:31 +08:00
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) Reset() { *m = GetChatLogsReq{} }
func (m *GetChatLogsReq) String() string { return proto.CompactTextString(m) }
func (*GetChatLogsReq) ProtoMessage() {}
func (*GetChatLogsReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{9}
2022-08-26 17:51:01 +08:00
}
func (m *GetChatLogsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetChatLogsReq.Unmarshal(m, b)
}
func (m *GetChatLogsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetChatLogsReq.Marshal(b, m, deterministic)
}
func (dst *GetChatLogsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetChatLogsReq.Merge(dst, src)
}
func (m *GetChatLogsReq) XXX_Size() int {
return xxx_messageInfo_GetChatLogsReq.Size(m)
}
func (m *GetChatLogsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetChatLogsReq.DiscardUnknown(m)
}
2022-08-12 18:37:51 +08:00
2022-08-26 17:51:01 +08:00
var xxx_messageInfo_GetChatLogsReq proto.InternalMessageInfo
2022-02-12 17:13:31 +08:00
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetContent() string {
if m != nil {
return m.Content
}
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetSendID() string {
if m != nil {
return m.SendID
}
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetRecvID() string {
if m != nil {
return m.RecvID
}
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetSendTime() string {
if m != nil {
return m.SendTime
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetSessionType() int32 {
if m != nil {
return m.SessionType
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetContentType() int32 {
if m != nil {
return m.ContentType
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetPagination() *sdk_ws.RequestPagination {
if m != nil {
return m.Pagination
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return nil
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *GetChatLogsReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
2022-08-12 18:37:51 +08:00
2022-08-26 17:51:01 +08:00
type ChatLog struct {
ServerMsgID string `protobuf:"bytes,1,opt,name=ServerMsgID" json:"ServerMsgID,omitempty"`
StringClientMsgID string `protobuf:"bytes,2,opt,name=stringClientMsgID" json:"stringClientMsgID,omitempty"`
SendID string `protobuf:"bytes,3,opt,name=SendID" json:"SendID,omitempty"`
RecvID string `protobuf:"bytes,4,opt,name=RecvID" json:"RecvID,omitempty"`
SenderPlatformID int32 `protobuf:"varint,5,opt,name=SenderPlatformID" json:"SenderPlatformID,omitempty"`
SenderNickname string `protobuf:"bytes,6,opt,name=SenderNickname" json:"SenderNickname,omitempty"`
SenderFaceURL string `protobuf:"bytes,7,opt,name=SenderFaceURL" json:"SenderFaceURL,omitempty"`
2022-08-29 15:52:39 +08:00
GroupName string `protobuf:"bytes,8,opt,name=GroupName" json:"GroupName,omitempty"`
SessionType int32 `protobuf:"varint,9,opt,name=SessionType" json:"SessionType,omitempty"`
MsgFrom int32 `protobuf:"varint,10,opt,name=MsgFrom" json:"MsgFrom,omitempty"`
ContentType int32 `protobuf:"varint,11,opt,name=ContentType" json:"ContentType,omitempty"`
Content string `protobuf:"bytes,12,opt,name=Content" json:"Content,omitempty"`
Status int32 `protobuf:"varint,13,opt,name=Status" json:"Status,omitempty"`
SendTime int64 `protobuf:"varint,14,opt,name=SendTime" json:"SendTime,omitempty"`
CreateTime int64 `protobuf:"varint,15,opt,name=CreateTime" json:"CreateTime,omitempty"`
Ex string `protobuf:"bytes,16,opt,name=Ex" json:"Ex,omitempty"`
2022-08-26 17:51:01 +08:00
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *ChatLog) Reset() { *m = ChatLog{} }
func (m *ChatLog) String() string { return proto.CompactTextString(m) }
func (*ChatLog) ProtoMessage() {}
func (*ChatLog) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{10}
2022-08-26 17:51:01 +08:00
}
func (m *ChatLog) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ChatLog.Unmarshal(m, b)
}
func (m *ChatLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ChatLog.Marshal(b, m, deterministic)
}
func (dst *ChatLog) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChatLog.Merge(dst, src)
}
func (m *ChatLog) XXX_Size() int {
return xxx_messageInfo_ChatLog.Size(m)
}
func (m *ChatLog) XXX_DiscardUnknown() {
xxx_messageInfo_ChatLog.DiscardUnknown(m)
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
var xxx_messageInfo_ChatLog proto.InternalMessageInfo
func (m *ChatLog) GetServerMsgID() string {
if m != nil {
return m.ServerMsgID
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
}
func (m *ChatLog) GetStringClientMsgID() string {
if m != nil {
return m.StringClientMsgID
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
}
func (m *ChatLog) GetSendID() string {
if m != nil {
return m.SendID
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
2022-02-12 17:13:31 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *ChatLog) GetRecvID() string {
if m != nil {
return m.RecvID
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
}
func (m *ChatLog) GetSenderPlatformID() int32 {
if m != nil {
return m.SenderPlatformID
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetSenderNickname() string {
if m != nil {
return m.SenderNickname
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
}
func (m *ChatLog) GetSenderFaceURL() string {
if m != nil {
return m.SenderFaceURL
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
2022-08-12 18:37:51 +08:00
}
2022-08-29 15:52:39 +08:00
func (m *ChatLog) GetGroupName() string {
if m != nil {
return m.GroupName
}
return ""
}
2022-08-26 17:51:01 +08:00
func (m *ChatLog) GetSessionType() int32 {
if m != nil {
return m.SessionType
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetMsgFrom() int32 {
if m != nil {
return m.MsgFrom
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetContentType() int32 {
if m != nil {
return m.ContentType
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetContent() string {
if m != nil {
return m.Content
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
func (m *ChatLog) GetStatus() int32 {
if m != nil {
return m.Status
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetSendTime() int64 {
if m != nil {
return m.SendTime
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetCreateTime() int64 {
if m != nil {
return m.CreateTime
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return 0
}
func (m *ChatLog) GetEx() string {
if m != nil {
return m.Ex
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
return ""
2022-08-12 18:37:51 +08:00
}
2022-08-26 17:51:01 +08:00
type GetChatLogsResp struct {
ChatLogs []*ChatLog `protobuf:"bytes,1,rep,name=ChatLogs" json:"ChatLogs,omitempty"`
Pagination *sdk_ws.ResponsePagination `protobuf:"bytes,2,opt,name=Pagination" json:"Pagination,omitempty"`
ChatLogsNum int32 `protobuf:"varint,3,opt,name=ChatLogsNum" json:"ChatLogsNum,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,4,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetChatLogsResp) Reset() { *m = GetChatLogsResp{} }
func (m *GetChatLogsResp) String() string { return proto.CompactTextString(m) }
func (*GetChatLogsResp) ProtoMessage() {}
func (*GetChatLogsResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{11}
2022-08-26 17:51:01 +08:00
}
func (m *GetChatLogsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetChatLogsResp.Unmarshal(m, b)
}
func (m *GetChatLogsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetChatLogsResp.Marshal(b, m, deterministic)
}
func (dst *GetChatLogsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetChatLogsResp.Merge(dst, src)
}
func (m *GetChatLogsResp) XXX_Size() int {
return xxx_messageInfo_GetChatLogsResp.Size(m)
}
func (m *GetChatLogsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetChatLogsResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetChatLogsResp proto.InternalMessageInfo
func (m *GetChatLogsResp) GetChatLogs() []*ChatLog {
if m != nil {
return m.ChatLogs
}
return nil
}
func (m *GetChatLogsResp) GetPagination() *sdk_ws.ResponsePagination {
if m != nil {
return m.Pagination
}
return nil
}
func (m *GetChatLogsResp) GetChatLogsNum() int32 {
if m != nil {
return m.ChatLogsNum
}
return 0
}
func (m *GetChatLogsResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type StatisticsReq struct {
From string `protobuf:"bytes,1,opt,name=from" json:"from,omitempty"`
To string `protobuf:"bytes,2,opt,name=to" json:"to,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *StatisticsReq) Reset() { *m = StatisticsReq{} }
func (m *StatisticsReq) String() string { return proto.CompactTextString(m) }
func (*StatisticsReq) ProtoMessage() {}
func (*StatisticsReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{12}
2022-08-26 17:51:01 +08:00
}
func (m *StatisticsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StatisticsReq.Unmarshal(m, b)
}
func (m *StatisticsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_StatisticsReq.Marshal(b, m, deterministic)
}
func (dst *StatisticsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_StatisticsReq.Merge(dst, src)
}
func (m *StatisticsReq) XXX_Size() int {
return xxx_messageInfo_StatisticsReq.Size(m)
}
func (m *StatisticsReq) XXX_DiscardUnknown() {
xxx_messageInfo_StatisticsReq.DiscardUnknown(m)
}
var xxx_messageInfo_StatisticsReq proto.InternalMessageInfo
func (m *StatisticsReq) GetFrom() string {
if m != nil {
return m.From
}
return ""
}
func (m *StatisticsReq) GetTo() string {
if m != nil {
return m.To
}
return ""
}
type GetActiveUserReq struct {
StatisticsReq *StatisticsReq `protobuf:"bytes,1,opt,name=StatisticsReq" json:"StatisticsReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetActiveUserReq) Reset() { *m = GetActiveUserReq{} }
func (m *GetActiveUserReq) String() string { return proto.CompactTextString(m) }
func (*GetActiveUserReq) ProtoMessage() {}
func (*GetActiveUserReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{13}
2022-08-26 17:51:01 +08:00
}
func (m *GetActiveUserReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetActiveUserReq.Unmarshal(m, b)
}
func (m *GetActiveUserReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetActiveUserReq.Marshal(b, m, deterministic)
}
func (dst *GetActiveUserReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetActiveUserReq.Merge(dst, src)
}
func (m *GetActiveUserReq) XXX_Size() int {
return xxx_messageInfo_GetActiveUserReq.Size(m)
}
func (m *GetActiveUserReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetActiveUserReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetActiveUserReq proto.InternalMessageInfo
func (m *GetActiveUserReq) GetStatisticsReq() *StatisticsReq {
if m != nil {
return m.StatisticsReq
}
return nil
}
func (m *GetActiveUserReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type UserResp struct {
NickName string `protobuf:"bytes,1,opt,name=NickName" json:"NickName,omitempty"`
UserId string `protobuf:"bytes,2,opt,name=UserId" json:"UserId,omitempty"`
MessageNum int32 `protobuf:"varint,3,opt,name=MessageNum" json:"MessageNum,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UserResp) Reset() { *m = UserResp{} }
func (m *UserResp) String() string { return proto.CompactTextString(m) }
func (*UserResp) ProtoMessage() {}
func (*UserResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{14}
2022-08-26 17:51:01 +08:00
}
func (m *UserResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UserResp.Unmarshal(m, b)
}
func (m *UserResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UserResp.Marshal(b, m, deterministic)
}
func (dst *UserResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_UserResp.Merge(dst, src)
}
func (m *UserResp) XXX_Size() int {
return xxx_messageInfo_UserResp.Size(m)
}
func (m *UserResp) XXX_DiscardUnknown() {
xxx_messageInfo_UserResp.DiscardUnknown(m)
}
var xxx_messageInfo_UserResp proto.InternalMessageInfo
func (m *UserResp) GetNickName() string {
if m != nil {
return m.NickName
}
return ""
}
func (m *UserResp) GetUserId() string {
if m != nil {
return m.UserId
}
return ""
}
func (m *UserResp) GetMessageNum() int32 {
if m != nil {
return m.MessageNum
}
return 0
}
type GetActiveUserResp struct {
Users []*UserResp `protobuf:"bytes,1,rep,name=Users" json:"Users,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,2,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetActiveUserResp) Reset() { *m = GetActiveUserResp{} }
func (m *GetActiveUserResp) String() string { return proto.CompactTextString(m) }
func (*GetActiveUserResp) ProtoMessage() {}
func (*GetActiveUserResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{15}
2022-08-26 17:51:01 +08:00
}
func (m *GetActiveUserResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetActiveUserResp.Unmarshal(m, b)
}
func (m *GetActiveUserResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetActiveUserResp.Marshal(b, m, deterministic)
}
func (dst *GetActiveUserResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetActiveUserResp.Merge(dst, src)
}
func (m *GetActiveUserResp) XXX_Size() int {
return xxx_messageInfo_GetActiveUserResp.Size(m)
}
func (m *GetActiveUserResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetActiveUserResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetActiveUserResp proto.InternalMessageInfo
func (m *GetActiveUserResp) GetUsers() []*UserResp {
if m != nil {
return m.Users
}
return nil
}
func (m *GetActiveUserResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type GetActiveGroupReq struct {
StatisticsReq *StatisticsReq `protobuf:"bytes,1,opt,name=StatisticsReq" json:"StatisticsReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetActiveGroupReq) Reset() { *m = GetActiveGroupReq{} }
func (m *GetActiveGroupReq) String() string { return proto.CompactTextString(m) }
func (*GetActiveGroupReq) ProtoMessage() {}
func (*GetActiveGroupReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{16}
2022-08-26 17:51:01 +08:00
}
func (m *GetActiveGroupReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetActiveGroupReq.Unmarshal(m, b)
}
func (m *GetActiveGroupReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetActiveGroupReq.Marshal(b, m, deterministic)
}
func (dst *GetActiveGroupReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetActiveGroupReq.Merge(dst, src)
}
func (m *GetActiveGroupReq) XXX_Size() int {
return xxx_messageInfo_GetActiveGroupReq.Size(m)
}
func (m *GetActiveGroupReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetActiveGroupReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetActiveGroupReq proto.InternalMessageInfo
func (m *GetActiveGroupReq) GetStatisticsReq() *StatisticsReq {
if m != nil {
return m.StatisticsReq
}
return nil
}
func (m *GetActiveGroupReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type GroupResp struct {
GroupName string `protobuf:"bytes,1,opt,name=GroupName" json:"GroupName,omitempty"`
GroupId string `protobuf:"bytes,2,opt,name=GroupId" json:"GroupId,omitempty"`
MessageNum int32 `protobuf:"varint,3,opt,name=MessageNum" json:"MessageNum,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,4,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GroupResp) Reset() { *m = GroupResp{} }
func (m *GroupResp) String() string { return proto.CompactTextString(m) }
func (*GroupResp) ProtoMessage() {}
func (*GroupResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{17}
2022-08-26 17:51:01 +08:00
}
func (m *GroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GroupResp.Unmarshal(m, b)
}
func (m *GroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GroupResp.Marshal(b, m, deterministic)
}
func (dst *GroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GroupResp.Merge(dst, src)
}
func (m *GroupResp) XXX_Size() int {
return xxx_messageInfo_GroupResp.Size(m)
}
func (m *GroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_GroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_GroupResp proto.InternalMessageInfo
func (m *GroupResp) GetGroupName() string {
if m != nil {
return m.GroupName
}
return ""
}
func (m *GroupResp) GetGroupId() string {
if m != nil {
return m.GroupId
}
return ""
}
func (m *GroupResp) GetMessageNum() int32 {
if m != nil {
return m.MessageNum
}
return 0
}
func (m *GroupResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type GetActiveGroupResp struct {
Groups []*GroupResp `protobuf:"bytes,1,rep,name=Groups" json:"Groups,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,2,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetActiveGroupResp) Reset() { *m = GetActiveGroupResp{} }
func (m *GetActiveGroupResp) String() string { return proto.CompactTextString(m) }
func (*GetActiveGroupResp) ProtoMessage() {}
func (*GetActiveGroupResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{18}
2022-08-26 17:51:01 +08:00
}
func (m *GetActiveGroupResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetActiveGroupResp.Unmarshal(m, b)
}
func (m *GetActiveGroupResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetActiveGroupResp.Marshal(b, m, deterministic)
}
func (dst *GetActiveGroupResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetActiveGroupResp.Merge(dst, src)
}
func (m *GetActiveGroupResp) XXX_Size() int {
return xxx_messageInfo_GetActiveGroupResp.Size(m)
}
func (m *GetActiveGroupResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetActiveGroupResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetActiveGroupResp proto.InternalMessageInfo
func (m *GetActiveGroupResp) GetGroups() []*GroupResp {
if m != nil {
return m.Groups
}
return nil
}
func (m *GetActiveGroupResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type DateNumList struct {
Date string `protobuf:"bytes,1,opt,name=Date" json:"Date,omitempty"`
Num int32 `protobuf:"varint,2,opt,name=Num" json:"Num,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DateNumList) Reset() { *m = DateNumList{} }
func (m *DateNumList) String() string { return proto.CompactTextString(m) }
func (*DateNumList) ProtoMessage() {}
func (*DateNumList) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{19}
2022-08-26 17:51:01 +08:00
}
func (m *DateNumList) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DateNumList.Unmarshal(m, b)
}
func (m *DateNumList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DateNumList.Marshal(b, m, deterministic)
}
func (dst *DateNumList) XXX_Merge(src proto.Message) {
xxx_messageInfo_DateNumList.Merge(dst, src)
}
func (m *DateNumList) XXX_Size() int {
return xxx_messageInfo_DateNumList.Size(m)
}
func (m *DateNumList) XXX_DiscardUnknown() {
xxx_messageInfo_DateNumList.DiscardUnknown(m)
}
var xxx_messageInfo_DateNumList proto.InternalMessageInfo
func (m *DateNumList) GetDate() string {
if m != nil {
return m.Date
}
return ""
}
func (m *DateNumList) GetNum() int32 {
if m != nil {
return m.Num
}
return 0
}
type GetMessageStatisticsReq struct {
StatisticsReq *StatisticsReq `protobuf:"bytes,1,opt,name=StatisticsReq" json:"StatisticsReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMessageStatisticsReq) Reset() { *m = GetMessageStatisticsReq{} }
func (m *GetMessageStatisticsReq) String() string { return proto.CompactTextString(m) }
func (*GetMessageStatisticsReq) ProtoMessage() {}
func (*GetMessageStatisticsReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{20}
2022-08-26 17:51:01 +08:00
}
func (m *GetMessageStatisticsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMessageStatisticsReq.Unmarshal(m, b)
}
func (m *GetMessageStatisticsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMessageStatisticsReq.Marshal(b, m, deterministic)
}
func (dst *GetMessageStatisticsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMessageStatisticsReq.Merge(dst, src)
}
func (m *GetMessageStatisticsReq) XXX_Size() int {
return xxx_messageInfo_GetMessageStatisticsReq.Size(m)
}
func (m *GetMessageStatisticsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetMessageStatisticsReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetMessageStatisticsReq proto.InternalMessageInfo
func (m *GetMessageStatisticsReq) GetStatisticsReq() *StatisticsReq {
if m != nil {
return m.StatisticsReq
}
return nil
}
func (m *GetMessageStatisticsReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type GetMessageStatisticsResp struct {
PrivateMessageNum int32 `protobuf:"varint,1,opt,name=PrivateMessageNum" json:"PrivateMessageNum,omitempty"`
GroupMessageNum int32 `protobuf:"varint,2,opt,name=GroupMessageNum" json:"GroupMessageNum,omitempty"`
PrivateMessageNumList []*DateNumList `protobuf:"bytes,3,rep,name=PrivateMessageNumList" json:"PrivateMessageNumList,omitempty"`
GroupMessageNumList []*DateNumList `protobuf:"bytes,4,rep,name=GroupMessageNumList" json:"GroupMessageNumList,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,5,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetMessageStatisticsResp) Reset() { *m = GetMessageStatisticsResp{} }
func (m *GetMessageStatisticsResp) String() string { return proto.CompactTextString(m) }
func (*GetMessageStatisticsResp) ProtoMessage() {}
func (*GetMessageStatisticsResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{21}
2022-08-26 17:51:01 +08:00
}
func (m *GetMessageStatisticsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetMessageStatisticsResp.Unmarshal(m, b)
}
func (m *GetMessageStatisticsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetMessageStatisticsResp.Marshal(b, m, deterministic)
}
func (dst *GetMessageStatisticsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetMessageStatisticsResp.Merge(dst, src)
}
func (m *GetMessageStatisticsResp) XXX_Size() int {
return xxx_messageInfo_GetMessageStatisticsResp.Size(m)
}
func (m *GetMessageStatisticsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetMessageStatisticsResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetMessageStatisticsResp proto.InternalMessageInfo
func (m *GetMessageStatisticsResp) GetPrivateMessageNum() int32 {
if m != nil {
return m.PrivateMessageNum
}
return 0
}
func (m *GetMessageStatisticsResp) GetGroupMessageNum() int32 {
if m != nil {
return m.GroupMessageNum
}
return 0
}
func (m *GetMessageStatisticsResp) GetPrivateMessageNumList() []*DateNumList {
if m != nil {
return m.PrivateMessageNumList
}
return nil
}
func (m *GetMessageStatisticsResp) GetGroupMessageNumList() []*DateNumList {
if m != nil {
return m.GroupMessageNumList
}
return nil
}
func (m *GetMessageStatisticsResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type GetGroupStatisticsReq struct {
StatisticsReq *StatisticsReq `protobuf:"bytes,1,opt,name=StatisticsReq" json:"StatisticsReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupStatisticsReq) Reset() { *m = GetGroupStatisticsReq{} }
func (m *GetGroupStatisticsReq) String() string { return proto.CompactTextString(m) }
func (*GetGroupStatisticsReq) ProtoMessage() {}
func (*GetGroupStatisticsReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{22}
2022-08-26 17:51:01 +08:00
}
func (m *GetGroupStatisticsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupStatisticsReq.Unmarshal(m, b)
}
func (m *GetGroupStatisticsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupStatisticsReq.Marshal(b, m, deterministic)
}
func (dst *GetGroupStatisticsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupStatisticsReq.Merge(dst, src)
}
func (m *GetGroupStatisticsReq) XXX_Size() int {
return xxx_messageInfo_GetGroupStatisticsReq.Size(m)
}
func (m *GetGroupStatisticsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupStatisticsReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupStatisticsReq proto.InternalMessageInfo
func (m *GetGroupStatisticsReq) GetStatisticsReq() *StatisticsReq {
if m != nil {
return m.StatisticsReq
}
return nil
}
func (m *GetGroupStatisticsReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type GetGroupStatisticsResp struct {
IncreaseGroupNum int32 `protobuf:"varint,1,opt,name=IncreaseGroupNum" json:"IncreaseGroupNum,omitempty"`
TotalGroupNum int32 `protobuf:"varint,2,opt,name=TotalGroupNum" json:"TotalGroupNum,omitempty"`
IncreaseGroupNumList []*DateNumList `protobuf:"bytes,3,rep,name=IncreaseGroupNumList" json:"IncreaseGroupNumList,omitempty"`
TotalGroupNumList []*DateNumList `protobuf:"bytes,4,rep,name=TotalGroupNumList" json:"TotalGroupNumList,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,5,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetGroupStatisticsResp) Reset() { *m = GetGroupStatisticsResp{} }
func (m *GetGroupStatisticsResp) String() string { return proto.CompactTextString(m) }
func (*GetGroupStatisticsResp) ProtoMessage() {}
func (*GetGroupStatisticsResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{23}
2022-08-26 17:51:01 +08:00
}
func (m *GetGroupStatisticsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetGroupStatisticsResp.Unmarshal(m, b)
}
func (m *GetGroupStatisticsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetGroupStatisticsResp.Marshal(b, m, deterministic)
}
func (dst *GetGroupStatisticsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetGroupStatisticsResp.Merge(dst, src)
}
func (m *GetGroupStatisticsResp) XXX_Size() int {
return xxx_messageInfo_GetGroupStatisticsResp.Size(m)
}
func (m *GetGroupStatisticsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetGroupStatisticsResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetGroupStatisticsResp proto.InternalMessageInfo
func (m *GetGroupStatisticsResp) GetIncreaseGroupNum() int32 {
if m != nil {
return m.IncreaseGroupNum
}
return 0
}
func (m *GetGroupStatisticsResp) GetTotalGroupNum() int32 {
if m != nil {
return m.TotalGroupNum
}
return 0
}
func (m *GetGroupStatisticsResp) GetIncreaseGroupNumList() []*DateNumList {
if m != nil {
return m.IncreaseGroupNumList
}
return nil
}
func (m *GetGroupStatisticsResp) GetTotalGroupNumList() []*DateNumList {
if m != nil {
return m.TotalGroupNumList
}
return nil
}
func (m *GetGroupStatisticsResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
type GetUserStatisticsReq struct {
StatisticsReq *StatisticsReq `protobuf:"bytes,1,opt,name=StatisticsReq" json:"StatisticsReq,omitempty"`
OperationID string `protobuf:"bytes,2,opt,name=OperationID" json:"OperationID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserStatisticsReq) Reset() { *m = GetUserStatisticsReq{} }
func (m *GetUserStatisticsReq) String() string { return proto.CompactTextString(m) }
func (*GetUserStatisticsReq) ProtoMessage() {}
func (*GetUserStatisticsReq) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{24}
2022-08-26 17:51:01 +08:00
}
func (m *GetUserStatisticsReq) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserStatisticsReq.Unmarshal(m, b)
}
func (m *GetUserStatisticsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserStatisticsReq.Marshal(b, m, deterministic)
}
func (dst *GetUserStatisticsReq) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserStatisticsReq.Merge(dst, src)
}
func (m *GetUserStatisticsReq) XXX_Size() int {
return xxx_messageInfo_GetUserStatisticsReq.Size(m)
}
func (m *GetUserStatisticsReq) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserStatisticsReq.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserStatisticsReq proto.InternalMessageInfo
func (m *GetUserStatisticsReq) GetStatisticsReq() *StatisticsReq {
if m != nil {
return m.StatisticsReq
}
return nil
}
func (m *GetUserStatisticsReq) GetOperationID() string {
if m != nil {
return m.OperationID
}
return ""
}
type GetUserStatisticsResp struct {
IncreaseUserNum int32 `protobuf:"varint,1,opt,name=IncreaseUserNum" json:"IncreaseUserNum,omitempty"`
ActiveUserNum int32 `protobuf:"varint,2,opt,name=ActiveUserNum" json:"ActiveUserNum,omitempty"`
TotalUserNum int32 `protobuf:"varint,3,opt,name=TotalUserNum" json:"TotalUserNum,omitempty"`
IncreaseUserNumList []*DateNumList `protobuf:"bytes,4,rep,name=IncreaseUserNumList" json:"IncreaseUserNumList,omitempty"`
ActiveUserNumList []*DateNumList `protobuf:"bytes,5,rep,name=ActiveUserNumList" json:"ActiveUserNumList,omitempty"`
TotalUserNumList []*DateNumList `protobuf:"bytes,6,rep,name=TotalUserNumList" json:"TotalUserNumList,omitempty"`
CommonResp *CommonResp `protobuf:"bytes,7,opt,name=CommonResp" json:"CommonResp,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GetUserStatisticsResp) Reset() { *m = GetUserStatisticsResp{} }
func (m *GetUserStatisticsResp) String() string { return proto.CompactTextString(m) }
func (*GetUserStatisticsResp) ProtoMessage() {}
func (*GetUserStatisticsResp) Descriptor() ([]byte, []int) {
2022-08-29 15:52:39 +08:00
return fileDescriptor_admin_cms_a6bac7cb5a282446, []int{25}
2022-08-26 17:51:01 +08:00
}
func (m *GetUserStatisticsResp) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GetUserStatisticsResp.Unmarshal(m, b)
}
func (m *GetUserStatisticsResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GetUserStatisticsResp.Marshal(b, m, deterministic)
}
func (dst *GetUserStatisticsResp) XXX_Merge(src proto.Message) {
xxx_messageInfo_GetUserStatisticsResp.Merge(dst, src)
}
func (m *GetUserStatisticsResp) XXX_Size() int {
return xxx_messageInfo_GetUserStatisticsResp.Size(m)
}
func (m *GetUserStatisticsResp) XXX_DiscardUnknown() {
xxx_messageInfo_GetUserStatisticsResp.DiscardUnknown(m)
}
var xxx_messageInfo_GetUserStatisticsResp proto.InternalMessageInfo
func (m *GetUserStatisticsResp) GetIncreaseUserNum() int32 {
if m != nil {
return m.IncreaseUserNum
}
return 0
}
func (m *GetUserStatisticsResp) GetActiveUserNum() int32 {
if m != nil {
return m.ActiveUserNum
}
return 0
}
func (m *GetUserStatisticsResp) GetTotalUserNum() int32 {
if m != nil {
return m.TotalUserNum
}
return 0
}
func (m *GetUserStatisticsResp) GetIncreaseUserNumList() []*DateNumList {
if m != nil {
return m.IncreaseUserNumList
}
return nil
}
func (m *GetUserStatisticsResp) GetActiveUserNumList() []*DateNumList {
if m != nil {
return m.ActiveUserNumList
}
return nil
}
func (m *GetUserStatisticsResp) GetTotalUserNumList() []*DateNumList {
if m != nil {
return m.TotalUserNumList
}
return nil
}
func (m *GetUserStatisticsResp) GetCommonResp() *CommonResp {
if m != nil {
return m.CommonResp
}
return nil
}
func init() {
proto.RegisterType((*CommonResp)(nil), "admin_cms.CommonResp")
proto.RegisterType((*AdminLoginReq)(nil), "admin_cms.AdminLoginReq")
proto.RegisterType((*AdminLoginResp)(nil), "admin_cms.AdminLoginResp")
proto.RegisterType((*AddUserRegisterAddFriendIDListReq)(nil), "admin_cms.AddUserRegisterAddFriendIDListReq")
proto.RegisterType((*AddUserRegisterAddFriendIDListResp)(nil), "admin_cms.AddUserRegisterAddFriendIDListResp")
proto.RegisterType((*ReduceUserRegisterAddFriendIDListReq)(nil), "admin_cms.ReduceUserRegisterAddFriendIDListReq")
proto.RegisterType((*ReduceUserRegisterAddFriendIDListResp)(nil), "admin_cms.ReduceUserRegisterAddFriendIDListResp")
proto.RegisterType((*GetUserRegisterAddFriendIDListReq)(nil), "admin_cms.GetUserRegisterAddFriendIDListReq")
proto.RegisterType((*GetUserRegisterAddFriendIDListResp)(nil), "admin_cms.GetUserRegisterAddFriendIDListResp")
proto.RegisterType((*GetChatLogsReq)(nil), "admin_cms.GetChatLogsReq")
proto.RegisterType((*ChatLog)(nil), "admin_cms.ChatLog")
proto.RegisterType((*GetChatLogsResp)(nil), "admin_cms.GetChatLogsResp")
proto.RegisterType((*StatisticsReq)(nil), "admin_cms.StatisticsReq")
proto.RegisterType((*GetActiveUserReq)(nil), "admin_cms.GetActiveUserReq")
proto.RegisterType((*UserResp)(nil), "admin_cms.UserResp")
proto.RegisterType((*GetActiveUserResp)(nil), "admin_cms.GetActiveUserResp")
proto.RegisterType((*GetActiveGroupReq)(nil), "admin_cms.GetActiveGroupReq")
proto.RegisterType((*GroupResp)(nil), "admin_cms.GroupResp")
proto.RegisterType((*GetActiveGroupResp)(nil), "admin_cms.GetActiveGroupResp")
proto.RegisterType((*DateNumList)(nil), "admin_cms.DateNumList")
proto.RegisterType((*GetMessageStatisticsReq)(nil), "admin_cms.GetMessageStatisticsReq")
proto.RegisterType((*GetMessageStatisticsResp)(nil), "admin_cms.GetMessageStatisticsResp")
proto.RegisterType((*GetGroupStatisticsReq)(nil), "admin_cms.GetGroupStatisticsReq")
proto.RegisterType((*GetGroupStatisticsResp)(nil), "admin_cms.GetGroupStatisticsResp")
proto.RegisterType((*GetUserStatisticsReq)(nil), "admin_cms.GetUserStatisticsReq")
proto.RegisterType((*GetUserStatisticsResp)(nil), "admin_cms.GetUserStatisticsResp")
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// Client API for AdminCMS service
type AdminCMSClient interface {
AdminLogin(ctx context.Context, in *AdminLoginReq, opts ...grpc.CallOption) (*AdminLoginResp, error)
AddUserRegisterAddFriendIDList(ctx context.Context, in *AddUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*AddUserRegisterAddFriendIDListResp, error)
ReduceUserRegisterAddFriendIDList(ctx context.Context, in *ReduceUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*ReduceUserRegisterAddFriendIDListResp, error)
GetUserRegisterAddFriendIDList(ctx context.Context, in *GetUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*GetUserRegisterAddFriendIDListResp, error)
GetChatLogs(ctx context.Context, in *GetChatLogsReq, opts ...grpc.CallOption) (*GetChatLogsResp, error)
GetActiveUser(ctx context.Context, in *GetActiveUserReq, opts ...grpc.CallOption) (*GetActiveUserResp, error)
GetActiveGroup(ctx context.Context, in *GetActiveGroupReq, opts ...grpc.CallOption) (*GetActiveGroupResp, error)
GetMessageStatistics(ctx context.Context, in *GetMessageStatisticsReq, opts ...grpc.CallOption) (*GetMessageStatisticsResp, error)
GetGroupStatistics(ctx context.Context, in *GetGroupStatisticsReq, opts ...grpc.CallOption) (*GetGroupStatisticsResp, error)
GetUserStatistics(ctx context.Context, in *GetUserStatisticsReq, opts ...grpc.CallOption) (*GetUserStatisticsResp, error)
}
type adminCMSClient struct {
cc *grpc.ClientConn
}
func NewAdminCMSClient(cc *grpc.ClientConn) AdminCMSClient {
return &adminCMSClient{cc}
}
func (c *adminCMSClient) AdminLogin(ctx context.Context, in *AdminLoginReq, opts ...grpc.CallOption) (*AdminLoginResp, error) {
out := new(AdminLoginResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/AdminLogin", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) AddUserRegisterAddFriendIDList(ctx context.Context, in *AddUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*AddUserRegisterAddFriendIDListResp, error) {
out := new(AddUserRegisterAddFriendIDListResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/AddUserRegisterAddFriendIDList", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) ReduceUserRegisterAddFriendIDList(ctx context.Context, in *ReduceUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*ReduceUserRegisterAddFriendIDListResp, error) {
out := new(ReduceUserRegisterAddFriendIDListResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/ReduceUserRegisterAddFriendIDList", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetUserRegisterAddFriendIDList(ctx context.Context, in *GetUserRegisterAddFriendIDListReq, opts ...grpc.CallOption) (*GetUserRegisterAddFriendIDListResp, error) {
out := new(GetUserRegisterAddFriendIDListResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetUserRegisterAddFriendIDList", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetChatLogs(ctx context.Context, in *GetChatLogsReq, opts ...grpc.CallOption) (*GetChatLogsResp, error) {
out := new(GetChatLogsResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetChatLogs", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetActiveUser(ctx context.Context, in *GetActiveUserReq, opts ...grpc.CallOption) (*GetActiveUserResp, error) {
out := new(GetActiveUserResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetActiveUser", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetActiveGroup(ctx context.Context, in *GetActiveGroupReq, opts ...grpc.CallOption) (*GetActiveGroupResp, error) {
out := new(GetActiveGroupResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetActiveGroup", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetMessageStatistics(ctx context.Context, in *GetMessageStatisticsReq, opts ...grpc.CallOption) (*GetMessageStatisticsResp, error) {
out := new(GetMessageStatisticsResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetMessageStatistics", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetGroupStatistics(ctx context.Context, in *GetGroupStatisticsReq, opts ...grpc.CallOption) (*GetGroupStatisticsResp, error) {
out := new(GetGroupStatisticsResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetGroupStatistics", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *adminCMSClient) GetUserStatistics(ctx context.Context, in *GetUserStatisticsReq, opts ...grpc.CallOption) (*GetUserStatisticsResp, error) {
out := new(GetUserStatisticsResp)
err := grpc.Invoke(ctx, "/admin_cms.adminCMS/GetUserStatistics", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for AdminCMS service
type AdminCMSServer interface {
AdminLogin(context.Context, *AdminLoginReq) (*AdminLoginResp, error)
AddUserRegisterAddFriendIDList(context.Context, *AddUserRegisterAddFriendIDListReq) (*AddUserRegisterAddFriendIDListResp, error)
ReduceUserRegisterAddFriendIDList(context.Context, *ReduceUserRegisterAddFriendIDListReq) (*ReduceUserRegisterAddFriendIDListResp, error)
GetUserRegisterAddFriendIDList(context.Context, *GetUserRegisterAddFriendIDListReq) (*GetUserRegisterAddFriendIDListResp, error)
GetChatLogs(context.Context, *GetChatLogsReq) (*GetChatLogsResp, error)
GetActiveUser(context.Context, *GetActiveUserReq) (*GetActiveUserResp, error)
GetActiveGroup(context.Context, *GetActiveGroupReq) (*GetActiveGroupResp, error)
GetMessageStatistics(context.Context, *GetMessageStatisticsReq) (*GetMessageStatisticsResp, error)
GetGroupStatistics(context.Context, *GetGroupStatisticsReq) (*GetGroupStatisticsResp, error)
GetUserStatistics(context.Context, *GetUserStatisticsReq) (*GetUserStatisticsResp, error)
}
func RegisterAdminCMSServer(s *grpc.Server, srv AdminCMSServer) {
s.RegisterService(&_AdminCMS_serviceDesc, srv)
}
func _AdminCMS_AdminLogin_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AdminLoginReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).AdminLogin(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/AdminLogin",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).AdminLogin(ctx, req.(*AdminLoginReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_AddUserRegisterAddFriendIDList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(AddUserRegisterAddFriendIDListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).AddUserRegisterAddFriendIDList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/AddUserRegisterAddFriendIDList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).AddUserRegisterAddFriendIDList(ctx, req.(*AddUserRegisterAddFriendIDListReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_ReduceUserRegisterAddFriendIDList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ReduceUserRegisterAddFriendIDListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).ReduceUserRegisterAddFriendIDList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/ReduceUserRegisterAddFriendIDList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).ReduceUserRegisterAddFriendIDList(ctx, req.(*ReduceUserRegisterAddFriendIDListReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetUserRegisterAddFriendIDList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserRegisterAddFriendIDListReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetUserRegisterAddFriendIDList(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetUserRegisterAddFriendIDList",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetUserRegisterAddFriendIDList(ctx, req.(*GetUserRegisterAddFriendIDListReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetChatLogs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetChatLogsReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetChatLogs(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetChatLogs",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetChatLogs(ctx, req.(*GetChatLogsReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetActiveUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetActiveUserReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetActiveUser(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetActiveUser",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetActiveUser(ctx, req.(*GetActiveUserReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetActiveGroup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetActiveGroupReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetActiveGroup(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetActiveGroup",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetActiveGroup(ctx, req.(*GetActiveGroupReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetMessageStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetMessageStatisticsReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetMessageStatistics(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetMessageStatistics",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetMessageStatistics(ctx, req.(*GetMessageStatisticsReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetGroupStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetGroupStatisticsReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetGroupStatistics(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetGroupStatistics",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetGroupStatistics(ctx, req.(*GetGroupStatisticsReq))
}
return interceptor(ctx, in, info, handler)
}
func _AdminCMS_GetUserStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(GetUserStatisticsReq)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(AdminCMSServer).GetUserStatistics(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/admin_cms.adminCMS/GetUserStatistics",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(AdminCMSServer).GetUserStatistics(ctx, req.(*GetUserStatisticsReq))
}
return interceptor(ctx, in, info, handler)
}
var _AdminCMS_serviceDesc = grpc.ServiceDesc{
ServiceName: "admin_cms.adminCMS",
HandlerType: (*AdminCMSServer)(nil),
Methods: []grpc.MethodDesc{
{
2022-02-12 17:13:31 +08:00
MethodName: "AdminLogin",
Handler: _AdminCMS_AdminLogin_Handler,
},
2022-08-12 18:37:51 +08:00
{
MethodName: "AddUserRegisterAddFriendIDList",
Handler: _AdminCMS_AddUserRegisterAddFriendIDList_Handler,
},
{
MethodName: "ReduceUserRegisterAddFriendIDList",
Handler: _AdminCMS_ReduceUserRegisterAddFriendIDList_Handler,
},
{
MethodName: "GetUserRegisterAddFriendIDList",
Handler: _AdminCMS_GetUserRegisterAddFriendIDList_Handler,
},
2022-08-26 17:51:01 +08:00
{
MethodName: "GetChatLogs",
Handler: _AdminCMS_GetChatLogs_Handler,
},
{
MethodName: "GetActiveUser",
Handler: _AdminCMS_GetActiveUser_Handler,
},
{
MethodName: "GetActiveGroup",
Handler: _AdminCMS_GetActiveGroup_Handler,
},
{
MethodName: "GetMessageStatistics",
Handler: _AdminCMS_GetMessageStatistics_Handler,
},
{
MethodName: "GetGroupStatistics",
Handler: _AdminCMS_GetGroupStatistics_Handler,
},
{
MethodName: "GetUserStatistics",
Handler: _AdminCMS_GetUserStatistics_Handler,
},
2022-02-12 17:13:31 +08:00
},
Streams: []grpc.StreamDesc{},
Metadata: "admin_cms/admin_cms.proto",
}
2022-08-12 18:37:51 +08:00
func init() {
2022-08-29 15:52:39 +08:00
proto.RegisterFile("admin_cms/admin_cms.proto", fileDescriptor_admin_cms_a6bac7cb5a282446)
2022-08-26 17:51:01 +08:00
}
2022-08-29 15:52:39 +08:00
var fileDescriptor_admin_cms_a6bac7cb5a282446 = []byte{
// 1416 bytes of a gzipped FileDescriptorProto
2022-08-26 17:51:01 +08:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x6e, 0xdb, 0xc6,
2022-08-29 15:52:39 +08:00
0x13, 0x07, 0x25, 0xcb, 0xb2, 0x46, 0xb1, 0x63, 0x6f, 0xec, 0x84, 0x51, 0xf2, 0xcf, 0x5f, 0x66,
2022-08-26 17:51:01 +08:00
0x93, 0x42, 0x2d, 0x52, 0xa9, 0x70, 0xd0, 0x53, 0x81, 0x14, 0x8e, 0x94, 0xa8, 0x0a, 0xac, 0xc4,
2022-08-29 15:52:39 +08:00
0x60, 0x92, 0x02, 0x6d, 0xd1, 0x08, 0xac, 0xb4, 0x56, 0x09, 0x5b, 0xe4, 0x9a, 0xbb, 0x72, 0x1c,
0x14, 0xbd, 0xe6, 0xd2, 0x7b, 0x0f, 0x3d, 0xf6, 0x15, 0xfa, 0x04, 0x3d, 0xf6, 0x31, 0x8a, 0x3e,
0x47, 0x81, 0x62, 0x77, 0xf9, 0xb1, 0x4b, 0xd2, 0x92, 0xec, 0xa0, 0xbe, 0x71, 0x66, 0xe7, 0x63,
0xe7, 0xf7, 0x9b, 0x59, 0x2e, 0x09, 0x37, 0x9d, 0xd1, 0xc4, 0xf5, 0x06, 0xc3, 0x09, 0x6d, 0xc5,
0x4f, 0x4d, 0x12, 0xf8, 0xcc, 0x47, 0x95, 0x58, 0x51, 0xdb, 0x7e, 0x4e, 0xb0, 0x37, 0xe8, 0xf5,
0x5b, 0xe4, 0x70, 0xdc, 0x12, 0xab, 0x2d, 0x3a, 0x3a, 0x1c, 0xbc, 0xa1, 0xad, 0x37, 0xa1, 0xb5,
0xf5, 0x10, 0xa0, 0xed, 0x4f, 0x26, 0xbe, 0x67, 0x63, 0x4a, 0x90, 0x09, 0x65, 0x1c, 0x04, 0x6d,
0x7f, 0x84, 0x4d, 0xa3, 0x6e, 0x34, 0x4a, 0x76, 0x24, 0xa2, 0xeb, 0xb0, 0x8c, 0x83, 0xa0, 0x4f,
0xc7, 0x66, 0xa1, 0x6e, 0x34, 0x2a, 0x76, 0x28, 0x59, 0x43, 0x58, 0xdd, 0xe5, 0xf9, 0xf6, 0xfc,
0xb1, 0xeb, 0xd9, 0xf8, 0x18, 0xd5, 0xa1, 0xfa, 0x9c, 0xe0, 0xc0, 0x61, 0xae, 0xef, 0xf5, 0x3a,
0x22, 0x4c, 0xc5, 0x56, 0x55, 0x3c, 0x89, 0x70, 0xe9, 0x75, 0xc2, 0x58, 0x91, 0xc8, 0x93, 0xbc,
0xc0, 0xc3, 0x00, 0x33, 0xb3, 0x28, 0x93, 0x48, 0xc9, 0xfa, 0x0e, 0xd6, 0xd4, 0x24, 0x94, 0xa0,
0x4d, 0x28, 0x31, 0xff, 0x10, 0x7b, 0x61, 0x7c, 0x29, 0xa0, 0xcf, 0x00, 0x86, 0x71, 0x31, 0x22,
0x78, 0x75, 0x67, 0xab, 0x99, 0x00, 0x94, 0x54, 0x6a, 0x2b, 0x86, 0x16, 0x86, 0xed, 0xdd, 0xd1,
0xe8, 0x15, 0xc5, 0x81, 0x8d, 0xc7, 0x2e, 0x65, 0x38, 0xd8, 0x1d, 0x8d, 0x9e, 0x04, 0x2e, 0xf6,
0x46, 0xbd, 0xce, 0x9e, 0x4b, 0x59, 0x58, 0x97, 0x9f, 0xad, 0x4b, 0x51, 0xa1, 0x3b, 0x00, 0x53,
0x8a, 0x03, 0xe9, 0x62, 0x16, 0xea, 0xc5, 0x46, 0xc5, 0x56, 0x34, 0xd6, 0xb7, 0x60, 0xcd, 0x4b,
0x43, 0x49, 0xaa, 0x06, 0x63, 0xd1, 0x1a, 0xde, 0x19, 0x70, 0xd7, 0xc6, 0xa3, 0xe9, 0x10, 0xbf,
0x77, 0x1d, 0xb7, 0xa1, 0x12, 0x8b, 0x02, 0xc4, 0x92, 0x9d, 0x28, 0x52, 0x55, 0x16, 0x33, 0x55,
0xbe, 0x86, 0x7b, 0x0b, 0xec, 0xe3, 0xe2, 0x85, 0xfe, 0x6c, 0xc0, 0x76, 0x17, 0xb3, 0xf7, 0xae,
0xb2, 0x03, 0x40, 0x9c, 0xb1, 0xeb, 0x25, 0x65, 0x56, 0x77, 0xee, 0x36, 0x29, 0x0e, 0x4e, 0x70,
0x30, 0x70, 0x88, 0x3b, 0x20, 0x4e, 0xe0, 0x4c, 0x68, 0xd3, 0xc6, 0xc7, 0x53, 0x4c, 0xd9, 0x7e,
0x6c, 0x6b, 0x2b, 0x7e, 0xd6, 0xdf, 0x06, 0x58, 0xf3, 0x76, 0x43, 0x09, 0xfa, 0x02, 0xae, 0x08,
0x88, 0xbc, 0x03, 0x5f, 0xc0, 0x66, 0xd4, 0x8b, 0x8d, 0xea, 0xce, 0xad, 0x9c, 0x74, 0xaf, 0x42,
0x33, 0x5b, 0x73, 0x40, 0x8f, 0x73, 0x76, 0x7b, 0x2f, 0x77, 0xb7, 0x94, 0xf8, 0x1e, 0xc5, 0xf9,
0xdb, 0x4d, 0x61, 0x5e, 0x5c, 0x14, 0xf3, 0xdf, 0x0a, 0xb0, 0xd6, 0xc5, 0xac, 0xfd, 0x83, 0xc3,
0xf6, 0xfc, 0x31, 0xe5, 0x00, 0x9b, 0x50, 0x6e, 0xfb, 0x1e, 0xc3, 0x1e, 0x0b, 0xc1, 0x8d, 0x44,
0x39, 0xc4, 0xbc, 0xfa, 0xe8, 0xa4, 0x90, 0x12, 0xd7, 0xdb, 0x78, 0x78, 0xd2, 0xeb, 0x44, 0xc3,
0x2d, 0x25, 0x54, 0x83, 0x15, 0x6e, 0xf1, 0xd2, 0x9d, 0x60, 0x73, 0x49, 0xac, 0xc4, 0x32, 0xa7,
0xf1, 0x05, 0xa6, 0xd4, 0xf5, 0xbd, 0x97, 0x6f, 0x09, 0x36, 0x4b, 0xa2, 0x19, 0x55, 0x15, 0xb7,
0x08, 0x13, 0x0b, 0x8b, 0x65, 0x69, 0xa1, 0xa8, 0x38, 0xd1, 0x09, 0x1a, 0x66, 0xf9, 0x3c, 0x44,
0x27, 0xcf, 0xe9, 0x63, 0x6d, 0x25, 0x73, 0xac, 0x59, 0xff, 0x14, 0xa1, 0x1c, 0x22, 0x24, 0xf7,
0xcd, 0x13, 0xf4, 0xe9, 0x38, 0x69, 0x3f, 0x45, 0x85, 0xee, 0xc3, 0x06, 0x65, 0x81, 0xeb, 0x8d,
0xdb, 0x47, 0x2e, 0xf6, 0x98, 0xb4, 0x93, 0x80, 0x65, 0x17, 0x14, 0x4c, 0x8b, 0x67, 0x60, 0xba,
0xa4, 0x61, 0xfa, 0x31, 0xac, 0x73, 0x0b, 0x1c, 0xec, 0x1f, 0x39, 0xec, 0xc0, 0x0f, 0x26, 0xbd,
0x4e, 0x08, 0x5e, 0x46, 0x8f, 0x3e, 0x84, 0x35, 0xa9, 0x7b, 0xe6, 0x0e, 0x0f, 0x3d, 0x67, 0x22,
0x41, 0xac, 0xd8, 0x29, 0x2d, 0xba, 0x0b, 0xab, 0x52, 0xf3, 0xc4, 0x19, 0xe2, 0x57, 0xf6, 0x9e,
0x80, 0xb2, 0x62, 0xeb, 0x4a, 0x7e, 0x78, 0x74, 0x03, 0x7f, 0x4a, 0x9e, 0xf1, 0x40, 0x12, 0xa5,
0x44, 0x91, 0xe6, 0xb3, 0x92, 0xe5, 0xd3, 0x84, 0x72, 0x9f, 0x8e, 0x9f, 0x04, 0xfe, 0xc4, 0x04,
0xf9, 0x06, 0x0a, 0xc5, 0x34, 0xd3, 0xd5, 0x2c, 0xd3, 0x4a, 0x4f, 0x5e, 0xc9, 0xf6, 0x24, 0x73,
0xd8, 0x94, 0x9a, 0xab, 0xc2, 0x2d, 0x94, 0xb4, 0xde, 0x5b, 0xab, 0x1b, 0x8d, 0xa2, 0xd2, 0x7b,
0x77, 0x00, 0xda, 0x01, 0x76, 0x18, 0x16, 0xab, 0x57, 0xc5, 0xaa, 0xa2, 0x41, 0x6b, 0x50, 0x78,
0x7c, 0x6a, 0xae, 0x8b, 0x44, 0x85, 0xc7, 0xa7, 0xd6, 0x5f, 0x06, 0x5c, 0xd5, 0x86, 0x84, 0x12,
0xd4, 0x84, 0x95, 0x48, 0x0e, 0x67, 0x1e, 0xa9, 0xd3, 0x26, 0x97, 0xec, 0xd8, 0x86, 0x8f, 0xf9,
0xfe, 0x45, 0xc7, 0x5c, 0x6f, 0xd6, 0x28, 0xe4, 0xb3, 0xe9, 0x44, 0xf4, 0x0c, 0x87, 0x2a, 0x51,
0xf1, 0x83, 0x20, 0x99, 0x75, 0xd1, 0x3c, 0x67, 0x1f, 0x04, 0xc9, 0xb3, 0xf5, 0x00, 0x56, 0x39,
0x72, 0x2e, 0x65, 0xee, 0x50, 0x1c, 0x03, 0x08, 0x96, 0x0e, 0x38, 0x57, 0xb2, 0xc3, 0xc5, 0x33,
0x07, 0x86, 0xf9, 0x61, 0x2f, 0x17, 0x98, 0x6f, 0x31, 0x58, 0xef, 0x62, 0xb6, 0x3b, 0x64, 0xee,
0x49, 0xf8, 0x52, 0x38, 0x46, 0x0f, 0x53, 0x81, 0xc2, 0xf3, 0xdf, 0x54, 0xb6, 0xa0, 0xad, 0xdb,
0xa9, 0xbc, 0xa9, 0x71, 0x2c, 0x64, 0xc7, 0xf1, 0x35, 0xac, 0xc8, 0x64, 0x94, 0x70, 0x9a, 0x79,
0x1b, 0x8b, 0x9e, 0x94, 0x3b, 0x8d, 0x65, 0xde, 0x1a, 0xe2, 0xcc, 0x1d, 0x45, 0xc7, 0x95, 0x94,
0x38, 0xfd, 0x7d, 0x4c, 0xa9, 0x33, 0xc6, 0x09, 0x84, 0x8a, 0xc6, 0x9a, 0xc2, 0x46, 0xaa, 0x2a,
0x4a, 0xd0, 0x47, 0x50, 0xe2, 0xcf, 0x11, 0xd9, 0xd7, 0x94, 0x72, 0x22, 0x1b, 0x5b, 0x5a, 0xa4,
0x18, 0x28, 0x2c, 0xca, 0x80, 0x9a, 0x56, 0xcc, 0xd5, 0xe5, 0xa0, 0xf9, 0xab, 0x11, 0xce, 0xb5,
0x28, 0x53, 0x1b, 0x72, 0x23, 0x3d, 0xe4, 0x26, 0x94, 0x85, 0x10, 0x43, 0x1a, 0x89, 0xf3, 0x30,
0xbd, 0x68, 0x57, 0xbe, 0x05, 0x94, 0xc6, 0x84, 0x12, 0x74, 0x1f, 0x96, 0x85, 0x10, 0x91, 0xb1,
0xa9, 0x04, 0x8a, 0xad, 0xec, 0xd0, 0xe6, 0xa2, 0x74, 0x3c, 0x80, 0x6a, 0xc7, 0x61, 0x7c, 0xf3,
0xe2, 0x35, 0x8d, 0x60, 0x89, 0x8b, 0xd1, 0x38, 0xf0, 0x67, 0xb4, 0x0e, 0x45, 0x5e, 0xad, 0xbc,
0x48, 0xf1, 0x47, 0xeb, 0x47, 0xb8, 0xd1, 0xc5, 0x2c, 0xac, 0x5b, 0x67, 0xe2, 0xbf, 0x67, 0xf2,
0x8f, 0x02, 0x98, 0xf9, 0xd9, 0x05, 0x66, 0x1b, 0xfb, 0x81, 0x7b, 0xe2, 0x30, 0xac, 0xf0, 0x24,
0xbf, 0x04, 0xb2, 0x0b, 0xa8, 0x01, 0x57, 0x05, 0x7a, 0x8a, 0xad, 0xac, 0x32, 0xad, 0x46, 0x7b,
0xb0, 0x95, 0x71, 0x8f, 0xef, 0x8f, 0xd5, 0x9d, 0xeb, 0x4a, 0x79, 0x0a, 0x9c, 0x76, 0xbe, 0x13,
0xfa, 0x12, 0xae, 0xa5, 0x12, 0x88, 0x58, 0x4b, 0x33, 0x63, 0xe5, 0xb9, 0xa4, 0x58, 0x2f, 0x2d,
0xde, 0x70, 0x5b, 0x5d, 0xcc, 0x44, 0xc0, 0xcb, 0xa6, 0xef, 0xf7, 0x02, 0x5c, 0xcf, 0xcb, 0x4d,
0x09, 0x7f, 0xe9, 0xf7, 0xbc, 0x61, 0x80, 0x1d, 0x2a, 0xa7, 0x20, 0xe1, 0x2e, 0xa3, 0xe7, 0x2f,
0xf3, 0x97, 0x3e, 0x73, 0x8e, 0x62, 0x43, 0x49, 0x9c, 0xae, 0x44, 0x4f, 0x61, 0x33, 0xed, 0xb9,
0x00, 0x6b, 0xb9, 0x3e, 0xa8, 0x03, 0x1b, 0x5a, 0xf0, 0x05, 0x28, 0xcb, 0x3a, 0x5c, 0x94, 0xb0,
0x53, 0xd8, 0x0c, 0x6f, 0xe9, 0x97, 0xcd, 0xd7, 0x2f, 0x45, 0xd1, 0x2b, 0xe9, 0xd4, 0x94, 0xf0,
0xe9, 0x89, 0x80, 0xe2, 0xab, 0x09, 0x5b, 0x69, 0x35, 0x27, 0x2b, 0x79, 0xcf, 0x28, 0x64, 0x69,
0x4a, 0x64, 0xc1, 0x15, 0x81, 0x57, 0x64, 0x24, 0x8f, 0x57, 0x4d, 0xc7, 0x27, 0x27, 0x15, 0x7c,
0x91, 0xc9, 0xc9, 0x71, 0xe1, 0x74, 0x6a, 0xe9, 0x45, 0x9c, 0xd2, 0x6c, 0x3a, 0x33, 0x0e, 0xe8,
0x11, 0xac, 0xab, 0xfb, 0x13, 0x41, 0x96, 0x67, 0x06, 0xc9, 0xd8, 0xa7, 0x5a, 0xa2, 0xbc, 0x60,
0x4b, 0xec, 0xfc, 0x59, 0x86, 0x15, 0x61, 0xd4, 0xee, 0xbf, 0x40, 0xbb, 0x00, 0xc9, 0x0f, 0x06,
0xa4, 0xd2, 0xaf, 0xfd, 0xdc, 0xa8, 0xdd, 0x3c, 0x63, 0x85, 0x12, 0xf4, 0x13, 0xdc, 0x99, 0xfd,
0x75, 0x8f, 0xee, 0x6b, 0xce, 0x73, 0xfe, 0x37, 0xd4, 0x3e, 0x39, 0x87, 0x35, 0x25, 0xe8, 0x9d,
0x01, 0xdb, 0x73, 0xbf, 0xbb, 0x51, 0x4b, 0x09, 0xba, 0xc8, 0xdf, 0x82, 0xda, 0xa7, 0xe7, 0x73,
0x90, 0x38, 0xcc, 0xfe, 0x20, 0xd6, 0x70, 0x98, 0xfb, 0x25, 0xaf, 0xe1, 0xb0, 0xc0, 0x97, 0x76,
0x07, 0xaa, 0xca, 0x25, 0x1c, 0xdd, 0xd4, 0xbd, 0x95, 0x2f, 0xd8, 0x5a, 0xed, 0xac, 0x25, 0x4a,
0xd0, 0x53, 0x58, 0xd5, 0x2e, 0x77, 0xe8, 0x96, 0x6e, 0xac, 0x5d, 0x66, 0x6b, 0xb7, 0xcf, 0x5e,
0xa4, 0x04, 0xf5, 0xc5, 0xb7, 0xb3, 0x72, 0x3b, 0x41, 0xb9, 0xf6, 0xd1, 0x65, 0xae, 0xf6, 0xbf,
0x19, 0xab, 0x94, 0xa0, 0x81, 0x38, 0xca, 0x32, 0xaf, 0x6f, 0x64, 0xe9, 0x6e, 0x79, 0xb7, 0x8b,
0xda, 0x07, 0x73, 0x6d, 0x28, 0x41, 0x5f, 0x8b, 0xdb, 0x54, 0xea, 0x05, 0x83, 0xea, 0xba, 0x6b,
0xf6, 0xdd, 0x57, 0xdb, 0x9e, 0x63, 0x41, 0x09, 0xfa, 0x4a, 0x5c, 0x5e, 0xf5, 0xb3, 0x10, 0xfd,
0x3f, 0x4b, 0xb0, 0x1e, 0xb8, 0x3e, 0xdb, 0x80, 0x92, 0x47, 0x37, 0xbe, 0xd9, 0x6a, 0x26, 0xff,
0x41, 0x3f, 0x8f, 0x9f, 0xbe, 0x5f, 0x16, 0x3f, 0x39, 0x1f, 0xfc, 0x1b, 0x00, 0x00, 0xff, 0xff,
0xcd, 0xf8, 0xf8, 0x38, 0x2f, 0x15, 0x00, 0x00,
2022-08-12 18:37:51 +08:00
}