user

package
v1.4.7 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2024 License: GPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ResultCode_name = map[int32]string{
	0: "Success",
	1: "MaxLimit",
	2: "Repeated",
	3: "NotExisted",
	4: "DBException",
	5: "Empty",
}
View Source
var ResultCode_value = map[string]int32{
	"Success":     0,
	"MaxLimit":    1,
	"Repeated":    2,
	"NotExisted":  3,
	"DBException": 4,
	"Empty":       5,
}
View Source
var UserSex_name = map[int32]string{
	0: "Girl",
	1: "Boy",
}
View Source
var UserSex_value = map[string]int32{
	"Girl": 0,
	"Boy":  1,
}
View Source
var UserType_name = map[int32]string{
	0: "SuperRoot",
	1: "EnterpriseAdmin",
	2: "EnterpriseCommon",
	3: "Common",
	4: "Visitor",
}
View Source
var UserType_value = map[string]int32{
	"SuperRoot":        0,
	"EnterpriseAdmin":  1,
	"EnterpriseCommon": 2,
	"Common":           3,
	"Visitor":          4,
}
View Source
var WechatType_name = map[int32]string{
	0: "Default",
	1: "OpenID",
	2: "Union",
}
View Source
var WechatType_value = map[string]int32{
	"Default": 0,
	"OpenID":  1,
	"Union":   2,
}

Functions

func RegisterAccountServiceHandler added in v1.1.0

func RegisterAccountServiceHandler(s server.Server, hdlr AccountServiceHandler, opts ...server.HandlerOption) error

func RegisterBehaviourServiceHandler added in v1.3.7

func RegisterBehaviourServiceHandler(s server.Server, hdlr BehaviourServiceHandler, opts ...server.HandlerOption) error

func RegisterMessageServiceHandler added in v1.4.1

func RegisterMessageServiceHandler(s server.Server, hdlr MessageServiceHandler, opts ...server.HandlerOption) error

func RegisterScoreServiceHandler added in v1.4.6

func RegisterScoreServiceHandler(s server.Server, hdlr ScoreServiceHandler, opts ...server.HandlerOption) error

func RegisterUserServiceHandler

func RegisterUserServiceHandler(s server.Server, hdlr UserServiceHandler, opts ...server.HandlerOption) error

func RegisterWechatServiceHandler added in v1.1.6

func RegisterWechatServiceHandler(s server.Server, hdlr WechatServiceHandler, opts ...server.HandlerOption) error

Types

type AccountInfo added in v1.1.0

type AccountInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Passwords            string   `protobuf:"bytes,3,opt,name=passwords,proto3" json:"passwords,omitempty"`
	Created              int64    `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64    `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Status               uint32   `protobuf:"varint,8,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AccountInfo) Descriptor added in v1.1.0

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

func (*AccountInfo) GetCreated added in v1.1.0

func (m *AccountInfo) GetCreated() int64

func (*AccountInfo) GetCreator added in v1.1.0

func (m *AccountInfo) GetCreator() string

func (*AccountInfo) GetName added in v1.1.0

func (m *AccountInfo) GetName() string

func (*AccountInfo) GetOperator added in v1.1.0

func (m *AccountInfo) GetOperator() string

func (*AccountInfo) GetPasswords added in v1.1.0

func (m *AccountInfo) GetPasswords() string

func (*AccountInfo) GetStatus added in v1.3.5

func (m *AccountInfo) GetStatus() uint32

func (*AccountInfo) GetUid added in v1.1.0

func (m *AccountInfo) GetUid() string

func (*AccountInfo) GetUpdated added in v1.1.0

func (m *AccountInfo) GetUpdated() int64

func (*AccountInfo) ProtoMessage added in v1.1.0

func (*AccountInfo) ProtoMessage()

func (*AccountInfo) Reset added in v1.1.0

func (m *AccountInfo) Reset()

func (*AccountInfo) String added in v1.1.0

func (m *AccountInfo) String() string

func (*AccountInfo) XXX_DiscardUnknown added in v1.2.8

func (m *AccountInfo) XXX_DiscardUnknown()

func (*AccountInfo) XXX_Marshal added in v1.2.8

func (m *AccountInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AccountInfo) XXX_Merge added in v1.2.8

func (m *AccountInfo) XXX_Merge(src proto.Message)

func (*AccountInfo) XXX_Size added in v1.2.8

func (m *AccountInfo) XXX_Size() int

func (*AccountInfo) XXX_Unmarshal added in v1.2.8

func (m *AccountInfo) XXX_Unmarshal(b []byte) error

type AccountService added in v1.1.0

type AccountService interface {
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyAccount, error)
	SignIn(ctx context.Context, in *ReqSignIn, opts ...client.CallOption) (*ReplyInfo, error)
	SetPasswords(ctx context.Context, in *ReqSetPasswords, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateName(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateStatus(ctx context.Context, in *ReqAccountStatus, opts ...client.CallOption) (*ReplyInfo, error)
	GetStatistic(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyStatistic, error)
}

func NewAccountService added in v1.1.0

func NewAccountService(name string, c client.Client) AccountService

type AccountServiceHandler added in v1.1.0

type AccountServiceHandler interface {
	GetOne(context.Context, *RequestInfo, *ReplyAccount) error
	SignIn(context.Context, *ReqSignIn, *ReplyInfo) error
	SetPasswords(context.Context, *ReqSetPasswords, *ReplyInfo) error
	UpdateName(context.Context, *RequestInfo, *ReplyInfo) error
	UpdateStatus(context.Context, *ReqAccountStatus, *ReplyInfo) error
	GetStatistic(context.Context, *RequestPage, *ReplyStatistic) error
}

type BehaviourInfo added in v1.3.7

type BehaviourInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	User                 string   `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
	Target               string   `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	Created              uint64   `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Name                 string   `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Creator              string   `protobuf:"bytes,6,opt,name=creator,proto3" json:"creator,omitempty"`
	Type                 uint32   `protobuf:"varint,7,opt,name=type,proto3" json:"type,omitempty"`
	Action               uint32   `protobuf:"varint,8,opt,name=action,proto3" json:"action,omitempty"`
	Updated              uint64   `protobuf:"varint,9,opt,name=updated,proto3" json:"updated,omitempty"`
	Scene                string   `protobuf:"bytes,10,opt,name=scene,proto3" json:"scene,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BehaviourInfo) Descriptor added in v1.3.7

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

func (*BehaviourInfo) GetAction added in v1.3.7

func (m *BehaviourInfo) GetAction() uint32

func (*BehaviourInfo) GetCreated added in v1.3.7

func (m *BehaviourInfo) GetCreated() uint64

func (*BehaviourInfo) GetCreator added in v1.3.7

func (m *BehaviourInfo) GetCreator() string

func (*BehaviourInfo) GetName added in v1.3.7

func (m *BehaviourInfo) GetName() string

func (*BehaviourInfo) GetScene added in v1.4.5

func (m *BehaviourInfo) GetScene() string

func (*BehaviourInfo) GetTarget added in v1.3.7

func (m *BehaviourInfo) GetTarget() string

func (*BehaviourInfo) GetType added in v1.3.7

func (m *BehaviourInfo) GetType() uint32

func (*BehaviourInfo) GetUid added in v1.3.8

func (m *BehaviourInfo) GetUid() string

func (*BehaviourInfo) GetUpdated added in v1.3.10

func (m *BehaviourInfo) GetUpdated() uint64

func (*BehaviourInfo) GetUser added in v1.3.7

func (m *BehaviourInfo) GetUser() string

func (*BehaviourInfo) ProtoMessage added in v1.3.7

func (*BehaviourInfo) ProtoMessage()

func (*BehaviourInfo) Reset added in v1.3.7

func (m *BehaviourInfo) Reset()

func (*BehaviourInfo) String added in v1.3.7

func (m *BehaviourInfo) String() string

func (*BehaviourInfo) XXX_DiscardUnknown added in v1.3.7

func (m *BehaviourInfo) XXX_DiscardUnknown()

func (*BehaviourInfo) XXX_Marshal added in v1.3.7

func (m *BehaviourInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BehaviourInfo) XXX_Merge added in v1.3.7

func (m *BehaviourInfo) XXX_Merge(src proto.Message)

func (*BehaviourInfo) XXX_Size added in v1.3.7

func (m *BehaviourInfo) XXX_Size() int

func (*BehaviourInfo) XXX_Unmarshal added in v1.3.7

func (m *BehaviourInfo) XXX_Unmarshal(b []byte) error

type BehaviourService added in v1.3.7

type BehaviourService interface {
	AddOne(ctx context.Context, in *ReqBehaviourAdd, opts ...client.CallOption) (*ReplyInfo, error)
	HadOne(ctx context.Context, in *ReqBehaviourCheck, opts ...client.CallOption) (*ReplyBehaviourCheck, error)
	UpdateOne(ctx context.Context, in *ReqBehaviourUpdate, opts ...client.CallOption) (*ReplyInfo, error)
	GetCount(ctx context.Context, in *ReqBehaviourCheck, opts ...client.CallOption) (*ReplyBehaviourCheck, error)
	GetList(ctx context.Context, in *ReqBehaviourList, opts ...client.CallOption) (*ReplyBehaviourList, error)
	GetStatistic(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyStatistic, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyBehaviourList, error)
}

func NewBehaviourService added in v1.3.7

func NewBehaviourService(name string, c client.Client) BehaviourService

type MessageInfo added in v1.4.1

type MessageInfo struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Status               uint32   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	Created              uint64   `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              uint64   `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Stamp                uint64   `protobuf:"varint,5,opt,name=stamp,proto3" json:"stamp,omitempty"`
	Uid                  string   `protobuf:"bytes,6,opt,name=uid,proto3" json:"uid,omitempty"`
	Creator              string   `protobuf:"bytes,7,opt,name=creator,proto3" json:"creator,omitempty"`
	Name                 string   `protobuf:"bytes,8,opt,name=name,proto3" json:"name,omitempty"`
	User                 string   `protobuf:"bytes,9,opt,name=user,proto3" json:"user,omitempty"`
	Quote                string   `protobuf:"bytes,10,opt,name=quote,proto3" json:"quote,omitempty"`
	Owner                string   `protobuf:"bytes,11,opt,name=owner,proto3" json:"owner,omitempty"`
	Targets              []string `protobuf:"bytes,12,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MessageInfo) Descriptor added in v1.4.1

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

func (*MessageInfo) GetCreated added in v1.4.1

func (m *MessageInfo) GetCreated() uint64

func (*MessageInfo) GetCreator added in v1.4.1

func (m *MessageInfo) GetCreator() string

func (*MessageInfo) GetName added in v1.4.1

func (m *MessageInfo) GetName() string

func (*MessageInfo) GetOwner added in v1.4.1

func (m *MessageInfo) GetOwner() string

func (*MessageInfo) GetQuote added in v1.4.1

func (m *MessageInfo) GetQuote() string

func (*MessageInfo) GetStamp added in v1.4.1

func (m *MessageInfo) GetStamp() uint64

func (*MessageInfo) GetStatus added in v1.4.1

func (m *MessageInfo) GetStatus() uint32

func (*MessageInfo) GetTargets added in v1.4.1

func (m *MessageInfo) GetTargets() []string

func (*MessageInfo) GetType added in v1.4.1

func (m *MessageInfo) GetType() uint32

func (*MessageInfo) GetUid added in v1.4.1

func (m *MessageInfo) GetUid() string

func (*MessageInfo) GetUpdated added in v1.4.1

func (m *MessageInfo) GetUpdated() uint64

func (*MessageInfo) GetUser added in v1.4.1

func (m *MessageInfo) GetUser() string

func (*MessageInfo) ProtoMessage added in v1.4.1

func (*MessageInfo) ProtoMessage()

func (*MessageInfo) Reset added in v1.4.1

func (m *MessageInfo) Reset()

func (*MessageInfo) String added in v1.4.1

func (m *MessageInfo) String() string

func (*MessageInfo) XXX_DiscardUnknown added in v1.4.1

func (m *MessageInfo) XXX_DiscardUnknown()

func (*MessageInfo) XXX_Marshal added in v1.4.1

func (m *MessageInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MessageInfo) XXX_Merge added in v1.4.1

func (m *MessageInfo) XXX_Merge(src proto.Message)

func (*MessageInfo) XXX_Size added in v1.4.1

func (m *MessageInfo) XXX_Size() int

func (*MessageInfo) XXX_Unmarshal added in v1.4.1

func (m *MessageInfo) XXX_Unmarshal(b []byte) error

type MessageService added in v1.4.1

type MessageService interface {
	AddOne(ctx context.Context, in *ReqMessageAdd, opts ...client.CallOption) (*ReplyInfo, error)
	GetStatistic(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyStatistic, error)
	GetList(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyMessageList, error)
	UpdateByFilter(ctx context.Context, in *ReqUpdateFilter, opts ...client.CallOption) (*ReplyInfo, error)
}

func NewMessageService added in v1.4.1

func NewMessageService(name string, c client.Client) MessageService

type MessageServiceHandler added in v1.4.1

type MessageServiceHandler interface {
	AddOne(context.Context, *ReqMessageAdd, *ReplyInfo) error
	GetStatistic(context.Context, *RequestPage, *ReplyStatistic) error
	GetList(context.Context, *RequestPage, *ReplyMessageList) error
	UpdateByFilter(context.Context, *ReqUpdateFilter, *ReplyInfo) error
}

type PairInfo added in v1.4.1

type PairInfo struct {
	Key                  string   `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	Count                uint32   `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PairInfo) Descriptor added in v1.4.1

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

func (*PairInfo) GetCount added in v1.4.1

func (m *PairInfo) GetCount() uint32

func (*PairInfo) GetKey added in v1.4.1

func (m *PairInfo) GetKey() string

func (*PairInfo) GetValue added in v1.4.1

func (m *PairInfo) GetValue() string

func (*PairInfo) ProtoMessage added in v1.4.1

func (*PairInfo) ProtoMessage()

func (*PairInfo) Reset added in v1.4.1

func (m *PairInfo) Reset()

func (*PairInfo) String added in v1.4.1

func (m *PairInfo) String() string

func (*PairInfo) XXX_DiscardUnknown added in v1.4.1

func (m *PairInfo) XXX_DiscardUnknown()

func (*PairInfo) XXX_Marshal added in v1.4.1

func (m *PairInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PairInfo) XXX_Merge added in v1.4.1

func (m *PairInfo) XXX_Merge(src proto.Message)

func (*PairInfo) XXX_Size added in v1.4.1

func (m *PairInfo) XXX_Size() int

func (*PairInfo) XXX_Unmarshal added in v1.4.1

func (m *PairInfo) XXX_Unmarshal(b []byte) error

type ReplyAccount added in v1.1.0

type ReplyAccount struct {
	Info                 *AccountInfo `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyAccount) Descriptor added in v1.1.0

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

func (*ReplyAccount) GetInfo added in v1.1.0

func (m *ReplyAccount) GetInfo() *AccountInfo

func (*ReplyAccount) GetStatus added in v1.1.0

func (m *ReplyAccount) GetStatus() *ReplyStatus

func (*ReplyAccount) ProtoMessage added in v1.1.0

func (*ReplyAccount) ProtoMessage()

func (*ReplyAccount) Reset added in v1.1.0

func (m *ReplyAccount) Reset()

func (*ReplyAccount) String added in v1.1.0

func (m *ReplyAccount) String() string

func (*ReplyAccount) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyAccount) XXX_DiscardUnknown()

func (*ReplyAccount) XXX_Marshal added in v1.2.8

func (m *ReplyAccount) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyAccount) XXX_Merge added in v1.2.8

func (m *ReplyAccount) XXX_Merge(src proto.Message)

func (*ReplyAccount) XXX_Size added in v1.2.8

func (m *ReplyAccount) XXX_Size() int

func (*ReplyAccount) XXX_Unmarshal added in v1.2.8

func (m *ReplyAccount) XXX_Unmarshal(b []byte) error

type ReplyBehaviourCheck added in v1.3.7

type ReplyBehaviourCheck struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Had                  bool         `protobuf:"varint,2,opt,name=had,proto3" json:"had,omitempty"`
	Count                uint32       `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyBehaviourCheck) Descriptor added in v1.3.7

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

func (*ReplyBehaviourCheck) GetCount added in v1.3.8

func (m *ReplyBehaviourCheck) GetCount() uint32

func (*ReplyBehaviourCheck) GetHad added in v1.3.7

func (m *ReplyBehaviourCheck) GetHad() bool

func (*ReplyBehaviourCheck) GetStatus added in v1.3.7

func (m *ReplyBehaviourCheck) GetStatus() *ReplyStatus

func (*ReplyBehaviourCheck) ProtoMessage added in v1.3.7

func (*ReplyBehaviourCheck) ProtoMessage()

func (*ReplyBehaviourCheck) Reset added in v1.3.7

func (m *ReplyBehaviourCheck) Reset()

func (*ReplyBehaviourCheck) String added in v1.3.7

func (m *ReplyBehaviourCheck) String() string

func (*ReplyBehaviourCheck) XXX_DiscardUnknown added in v1.3.7

func (m *ReplyBehaviourCheck) XXX_DiscardUnknown()

func (*ReplyBehaviourCheck) XXX_Marshal added in v1.3.7

func (m *ReplyBehaviourCheck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyBehaviourCheck) XXX_Merge added in v1.3.7

func (m *ReplyBehaviourCheck) XXX_Merge(src proto.Message)

func (*ReplyBehaviourCheck) XXX_Size added in v1.3.7

func (m *ReplyBehaviourCheck) XXX_Size() int

func (*ReplyBehaviourCheck) XXX_Unmarshal added in v1.3.7

func (m *ReplyBehaviourCheck) XXX_Unmarshal(b []byte) error

type ReplyBehaviourList added in v1.3.7

type ReplyBehaviourList struct {
	Status               *ReplyStatus     `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	List                 []*BehaviourInfo `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*ReplyBehaviourList) Descriptor added in v1.3.7

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

func (*ReplyBehaviourList) GetList added in v1.3.7

func (m *ReplyBehaviourList) GetList() []*BehaviourInfo

func (*ReplyBehaviourList) GetStatus added in v1.3.7

func (m *ReplyBehaviourList) GetStatus() *ReplyStatus

func (*ReplyBehaviourList) ProtoMessage added in v1.3.7

func (*ReplyBehaviourList) ProtoMessage()

func (*ReplyBehaviourList) Reset added in v1.3.7

func (m *ReplyBehaviourList) Reset()

func (*ReplyBehaviourList) String added in v1.3.7

func (m *ReplyBehaviourList) String() string

func (*ReplyBehaviourList) XXX_DiscardUnknown added in v1.3.7

func (m *ReplyBehaviourList) XXX_DiscardUnknown()

func (*ReplyBehaviourList) XXX_Marshal added in v1.3.7

func (m *ReplyBehaviourList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyBehaviourList) XXX_Merge added in v1.3.7

func (m *ReplyBehaviourList) XXX_Merge(src proto.Message)

func (*ReplyBehaviourList) XXX_Size added in v1.3.7

func (m *ReplyBehaviourList) XXX_Size() int

func (*ReplyBehaviourList) XXX_Unmarshal added in v1.3.7

func (m *ReplyBehaviourList) XXX_Unmarshal(b []byte) error

type ReplyInfo

type ReplyInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Uid                  string       `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyInfo) Descriptor

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

func (*ReplyInfo) GetStatus added in v1.1.1

func (m *ReplyInfo) GetStatus() *ReplyStatus

func (*ReplyInfo) GetUid

func (m *ReplyInfo) GetUid() string

func (*ReplyInfo) ProtoMessage

func (*ReplyInfo) ProtoMessage()

func (*ReplyInfo) Reset

func (m *ReplyInfo) Reset()

func (*ReplyInfo) String

func (m *ReplyInfo) String() string

func (*ReplyInfo) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyInfo) XXX_DiscardUnknown()

func (*ReplyInfo) XXX_Marshal added in v1.2.8

func (m *ReplyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyInfo) XXX_Merge added in v1.2.8

func (m *ReplyInfo) XXX_Merge(src proto.Message)

func (*ReplyInfo) XXX_Size added in v1.2.8

func (m *ReplyInfo) XXX_Size() int

func (*ReplyInfo) XXX_Unmarshal added in v1.2.8

func (m *ReplyInfo) XXX_Unmarshal(b []byte) error

type ReplyMessageList added in v1.4.1

type ReplyMessageList struct {
	Status               *ReplyStatus   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Total                uint32         `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	Pages                uint32         `protobuf:"varint,3,opt,name=pages,proto3" json:"pages,omitempty"`
	List                 []*MessageInfo `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReplyMessageList) Descriptor added in v1.4.1

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

func (*ReplyMessageList) GetList added in v1.4.1

func (m *ReplyMessageList) GetList() []*MessageInfo

func (*ReplyMessageList) GetPages added in v1.4.3

func (m *ReplyMessageList) GetPages() uint32

func (*ReplyMessageList) GetStatus added in v1.4.1

func (m *ReplyMessageList) GetStatus() *ReplyStatus

func (*ReplyMessageList) GetTotal added in v1.4.3

func (m *ReplyMessageList) GetTotal() uint32

func (*ReplyMessageList) ProtoMessage added in v1.4.1

func (*ReplyMessageList) ProtoMessage()

func (*ReplyMessageList) Reset added in v1.4.1

func (m *ReplyMessageList) Reset()

func (*ReplyMessageList) String added in v1.4.1

func (m *ReplyMessageList) String() string

func (*ReplyMessageList) XXX_DiscardUnknown added in v1.4.1

func (m *ReplyMessageList) XXX_DiscardUnknown()

func (*ReplyMessageList) XXX_Marshal added in v1.4.1

func (m *ReplyMessageList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyMessageList) XXX_Merge added in v1.4.1

func (m *ReplyMessageList) XXX_Merge(src proto.Message)

func (*ReplyMessageList) XXX_Size added in v1.4.1

func (m *ReplyMessageList) XXX_Size() int

func (*ReplyMessageList) XXX_Unmarshal added in v1.4.1

func (m *ReplyMessageList) XXX_Unmarshal(b []byte) error

type ReplyScoreInfo added in v1.4.6

type ReplyScoreInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *ScoreInfo   `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyScoreInfo) Descriptor added in v1.4.6

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

func (*ReplyScoreInfo) GetInfo added in v1.4.6

func (m *ReplyScoreInfo) GetInfo() *ScoreInfo

func (*ReplyScoreInfo) GetStatus added in v1.4.6

func (m *ReplyScoreInfo) GetStatus() *ReplyStatus

func (*ReplyScoreInfo) ProtoMessage added in v1.4.6

func (*ReplyScoreInfo) ProtoMessage()

func (*ReplyScoreInfo) Reset added in v1.4.6

func (m *ReplyScoreInfo) Reset()

func (*ReplyScoreInfo) String added in v1.4.6

func (m *ReplyScoreInfo) String() string

func (*ReplyScoreInfo) XXX_DiscardUnknown added in v1.4.6

func (m *ReplyScoreInfo) XXX_DiscardUnknown()

func (*ReplyScoreInfo) XXX_Marshal added in v1.4.6

func (m *ReplyScoreInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyScoreInfo) XXX_Merge added in v1.4.6

func (m *ReplyScoreInfo) XXX_Merge(src proto.Message)

func (*ReplyScoreInfo) XXX_Size added in v1.4.6

func (m *ReplyScoreInfo) XXX_Size() int

func (*ReplyScoreInfo) XXX_Unmarshal added in v1.4.6

func (m *ReplyScoreInfo) XXX_Unmarshal(b []byte) error

type ReplyScoreList added in v1.4.6

type ReplyScoreList struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	List                 []*ScoreInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyScoreList) Descriptor added in v1.4.6

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

func (*ReplyScoreList) GetList added in v1.4.6

func (m *ReplyScoreList) GetList() []*ScoreInfo

func (*ReplyScoreList) GetStatus added in v1.4.6

func (m *ReplyScoreList) GetStatus() *ReplyStatus

func (*ReplyScoreList) ProtoMessage added in v1.4.6

func (*ReplyScoreList) ProtoMessage()

func (*ReplyScoreList) Reset added in v1.4.6

func (m *ReplyScoreList) Reset()

func (*ReplyScoreList) String added in v1.4.6

func (m *ReplyScoreList) String() string

func (*ReplyScoreList) XXX_DiscardUnknown added in v1.4.6

func (m *ReplyScoreList) XXX_DiscardUnknown()

func (*ReplyScoreList) XXX_Marshal added in v1.4.6

func (m *ReplyScoreList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyScoreList) XXX_Merge added in v1.4.6

func (m *ReplyScoreList) XXX_Merge(src proto.Message)

func (*ReplyScoreList) XXX_Size added in v1.4.6

func (m *ReplyScoreList) XXX_Size() int

func (*ReplyScoreList) XXX_Unmarshal added in v1.4.6

func (m *ReplyScoreList) XXX_Unmarshal(b []byte) error

type ReplyStatistic added in v1.4.1

type ReplyStatistic struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Key                  string       `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Count                uint64       `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
	List                 []*PairInfo  `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyStatistic) Descriptor added in v1.4.1

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

func (*ReplyStatistic) GetCount added in v1.4.1

func (m *ReplyStatistic) GetCount() uint64

func (*ReplyStatistic) GetKey added in v1.4.1

func (m *ReplyStatistic) GetKey() string

func (*ReplyStatistic) GetList added in v1.4.1

func (m *ReplyStatistic) GetList() []*PairInfo

func (*ReplyStatistic) GetStatus added in v1.4.1

func (m *ReplyStatistic) GetStatus() *ReplyStatus

func (*ReplyStatistic) ProtoMessage added in v1.4.1

func (*ReplyStatistic) ProtoMessage()

func (*ReplyStatistic) Reset added in v1.4.1

func (m *ReplyStatistic) Reset()

func (*ReplyStatistic) String added in v1.4.1

func (m *ReplyStatistic) String() string

func (*ReplyStatistic) XXX_DiscardUnknown added in v1.4.1

func (m *ReplyStatistic) XXX_DiscardUnknown()

func (*ReplyStatistic) XXX_Marshal added in v1.4.1

func (m *ReplyStatistic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyStatistic) XXX_Merge added in v1.4.1

func (m *ReplyStatistic) XXX_Merge(src proto.Message)

func (*ReplyStatistic) XXX_Size added in v1.4.1

func (m *ReplyStatistic) XXX_Size() int

func (*ReplyStatistic) XXX_Unmarshal added in v1.4.1

func (m *ReplyStatistic) XXX_Unmarshal(b []byte) error

type ReplyStatus added in v1.1.1

type ReplyStatus struct {
	Code                 ResultCode `protobuf:"varint,1,opt,name=code,proto3,enum=omo.msp.user.ResultCode" json:"code,omitempty"`
	Msg                  string     `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ReplyStatus) Descriptor added in v1.1.1

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

func (*ReplyStatus) GetCode added in v1.1.1

func (m *ReplyStatus) GetCode() ResultCode

func (*ReplyStatus) GetMsg added in v1.1.1

func (m *ReplyStatus) GetMsg() string

func (*ReplyStatus) ProtoMessage added in v1.1.1

func (*ReplyStatus) ProtoMessage()

func (*ReplyStatus) Reset added in v1.1.1

func (m *ReplyStatus) Reset()

func (*ReplyStatus) String added in v1.1.1

func (m *ReplyStatus) String() string

func (*ReplyStatus) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyStatus) XXX_DiscardUnknown()

func (*ReplyStatus) XXX_Marshal added in v1.2.8

func (m *ReplyStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyStatus) XXX_Merge added in v1.2.8

func (m *ReplyStatus) XXX_Merge(src proto.Message)

func (*ReplyStatus) XXX_Size added in v1.2.8

func (m *ReplyStatus) XXX_Size() int

func (*ReplyStatus) XXX_Unmarshal added in v1.2.8

func (m *ReplyStatus) XXX_Unmarshal(b []byte) error

type ReplyUserList

type ReplyUserList struct {
	Total                uint64       `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
	PageMax              uint32       `protobuf:"varint,2,opt,name=pageMax,proto3" json:"pageMax,omitempty"`
	PageNow              uint32       `protobuf:"varint,3,opt,name=pageNow,proto3" json:"pageNow,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
	List                 []*UserInfo  `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyUserList) Descriptor

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

func (*ReplyUserList) GetList

func (m *ReplyUserList) GetList() []*UserInfo

func (*ReplyUserList) GetPageMax added in v1.0.3

func (m *ReplyUserList) GetPageMax() uint32

func (*ReplyUserList) GetPageNow added in v1.0.3

func (m *ReplyUserList) GetPageNow() uint32

func (*ReplyUserList) GetStatus added in v1.1.0

func (m *ReplyUserList) GetStatus() *ReplyStatus

func (*ReplyUserList) GetTotal added in v1.0.5

func (m *ReplyUserList) GetTotal() uint64

func (*ReplyUserList) ProtoMessage

func (*ReplyUserList) ProtoMessage()

func (*ReplyUserList) Reset

func (m *ReplyUserList) Reset()

func (*ReplyUserList) String

func (m *ReplyUserList) String() string

func (*ReplyUserList) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyUserList) XXX_DiscardUnknown()

func (*ReplyUserList) XXX_Marshal added in v1.2.8

func (m *ReplyUserList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyUserList) XXX_Merge added in v1.2.8

func (m *ReplyUserList) XXX_Merge(src proto.Message)

func (*ReplyUserList) XXX_Size added in v1.2.8

func (m *ReplyUserList) XXX_Size() int

func (*ReplyUserList) XXX_Unmarshal added in v1.2.8

func (m *ReplyUserList) XXX_Unmarshal(b []byte) error

type ReplyUserOne

type ReplyUserOne struct {
	Info                 *UserInfo    `protobuf:"bytes,1,opt,name=info,proto3" json:"info,omitempty"`
	Status               *ReplyStatus `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyUserOne) Descriptor

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

func (*ReplyUserOne) GetInfo

func (m *ReplyUserOne) GetInfo() *UserInfo

func (*ReplyUserOne) GetStatus added in v1.1.0

func (m *ReplyUserOne) GetStatus() *ReplyStatus

func (*ReplyUserOne) ProtoMessage

func (*ReplyUserOne) ProtoMessage()

func (*ReplyUserOne) Reset

func (m *ReplyUserOne) Reset()

func (*ReplyUserOne) String

func (m *ReplyUserOne) String() string

func (*ReplyUserOne) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyUserOne) XXX_DiscardUnknown()

func (*ReplyUserOne) XXX_Marshal added in v1.2.8

func (m *ReplyUserOne) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyUserOne) XXX_Merge added in v1.2.8

func (m *ReplyUserOne) XXX_Merge(src proto.Message)

func (*ReplyUserOne) XXX_Size added in v1.2.8

func (m *ReplyUserOne) XXX_Size() int

func (*ReplyUserOne) XXX_Unmarshal added in v1.2.8

func (m *ReplyUserOne) XXX_Unmarshal(b []byte) error

type ReplyWechatInfo added in v1.1.6

type ReplyWechatInfo struct {
	Status               *ReplyStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Info                 *WechatInfo  `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ReplyWechatInfo) Descriptor added in v1.1.6

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

func (*ReplyWechatInfo) GetInfo added in v1.1.6

func (m *ReplyWechatInfo) GetInfo() *WechatInfo

func (*ReplyWechatInfo) GetStatus added in v1.1.6

func (m *ReplyWechatInfo) GetStatus() *ReplyStatus

func (*ReplyWechatInfo) ProtoMessage added in v1.1.6

func (*ReplyWechatInfo) ProtoMessage()

func (*ReplyWechatInfo) Reset added in v1.1.6

func (m *ReplyWechatInfo) Reset()

func (*ReplyWechatInfo) String added in v1.1.6

func (m *ReplyWechatInfo) String() string

func (*ReplyWechatInfo) XXX_DiscardUnknown added in v1.2.8

func (m *ReplyWechatInfo) XXX_DiscardUnknown()

func (*ReplyWechatInfo) XXX_Marshal added in v1.2.8

func (m *ReplyWechatInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyWechatInfo) XXX_Merge added in v1.2.8

func (m *ReplyWechatInfo) XXX_Merge(src proto.Message)

func (*ReplyWechatInfo) XXX_Size added in v1.2.8

func (m *ReplyWechatInfo) XXX_Size() int

func (*ReplyWechatInfo) XXX_Unmarshal added in v1.2.8

func (m *ReplyWechatInfo) XXX_Unmarshal(b []byte) error

type ReqAccountStatus added in v1.3.5

type ReqAccountStatus struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Status               uint32   `protobuf:"varint,2,opt,name=status,proto3" json:"status,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqAccountStatus) Descriptor added in v1.3.5

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

func (*ReqAccountStatus) GetOperator added in v1.3.6

func (m *ReqAccountStatus) GetOperator() string

func (*ReqAccountStatus) GetStatus added in v1.3.5

func (m *ReqAccountStatus) GetStatus() uint32

func (*ReqAccountStatus) GetUid added in v1.3.5

func (m *ReqAccountStatus) GetUid() string

func (*ReqAccountStatus) ProtoMessage added in v1.3.5

func (*ReqAccountStatus) ProtoMessage()

func (*ReqAccountStatus) Reset added in v1.3.5

func (m *ReqAccountStatus) Reset()

func (*ReqAccountStatus) String added in v1.3.5

func (m *ReqAccountStatus) String() string

func (*ReqAccountStatus) XXX_DiscardUnknown added in v1.3.5

func (m *ReqAccountStatus) XXX_DiscardUnknown()

func (*ReqAccountStatus) XXX_Marshal added in v1.3.5

func (m *ReqAccountStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqAccountStatus) XXX_Merge added in v1.3.5

func (m *ReqAccountStatus) XXX_Merge(src proto.Message)

func (*ReqAccountStatus) XXX_Size added in v1.3.5

func (m *ReqAccountStatus) XXX_Size() int

func (*ReqAccountStatus) XXX_Unmarshal added in v1.3.5

func (m *ReqAccountStatus) XXX_Unmarshal(b []byte) error

type ReqBehaviourAdd added in v1.3.7

type ReqBehaviourAdd struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Target               string   `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Action               uint32   `protobuf:"varint,5,opt,name=action,proto3" json:"action,omitempty"`
	Scene                string   `protobuf:"bytes,6,opt,name=scene,proto3" json:"scene,omitempty"`
	Entity               string   `protobuf:"bytes,7,opt,name=entity,proto3" json:"entity,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqBehaviourAdd) Descriptor added in v1.3.7

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

func (*ReqBehaviourAdd) GetAction added in v1.3.7

func (m *ReqBehaviourAdd) GetAction() uint32

func (*ReqBehaviourAdd) GetEntity added in v1.4.5

func (m *ReqBehaviourAdd) GetEntity() string

func (*ReqBehaviourAdd) GetOperator added in v1.3.7

func (m *ReqBehaviourAdd) GetOperator() string

func (*ReqBehaviourAdd) GetScene added in v1.4.5

func (m *ReqBehaviourAdd) GetScene() string

func (*ReqBehaviourAdd) GetTarget added in v1.3.7

func (m *ReqBehaviourAdd) GetTarget() string

func (*ReqBehaviourAdd) GetType added in v1.3.7

func (m *ReqBehaviourAdd) GetType() uint32

func (*ReqBehaviourAdd) GetUser added in v1.3.7

func (m *ReqBehaviourAdd) GetUser() string

func (*ReqBehaviourAdd) ProtoMessage added in v1.3.7

func (*ReqBehaviourAdd) ProtoMessage()

func (*ReqBehaviourAdd) Reset added in v1.3.7

func (m *ReqBehaviourAdd) Reset()

func (*ReqBehaviourAdd) String added in v1.3.7

func (m *ReqBehaviourAdd) String() string

func (*ReqBehaviourAdd) XXX_DiscardUnknown added in v1.3.7

func (m *ReqBehaviourAdd) XXX_DiscardUnknown()

func (*ReqBehaviourAdd) XXX_Marshal added in v1.3.7

func (m *ReqBehaviourAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqBehaviourAdd) XXX_Merge added in v1.3.7

func (m *ReqBehaviourAdd) XXX_Merge(src proto.Message)

func (*ReqBehaviourAdd) XXX_Size added in v1.3.7

func (m *ReqBehaviourAdd) XXX_Size() int

func (*ReqBehaviourAdd) XXX_Unmarshal added in v1.3.7

func (m *ReqBehaviourAdd) XXX_Unmarshal(b []byte) error

type ReqBehaviourCheck added in v1.3.7

type ReqBehaviourCheck struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Target               string   `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"`
	Action               uint32   `protobuf:"varint,3,opt,name=action,proto3" json:"action,omitempty"`
	Type                 uint32   `protobuf:"varint,4,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqBehaviourCheck) Descriptor added in v1.3.7

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

func (*ReqBehaviourCheck) GetAction added in v1.3.9

func (m *ReqBehaviourCheck) GetAction() uint32

func (*ReqBehaviourCheck) GetTarget added in v1.3.7

func (m *ReqBehaviourCheck) GetTarget() string

func (*ReqBehaviourCheck) GetType added in v1.3.9

func (m *ReqBehaviourCheck) GetType() uint32

func (*ReqBehaviourCheck) GetUser added in v1.3.7

func (m *ReqBehaviourCheck) GetUser() string

func (*ReqBehaviourCheck) ProtoMessage added in v1.3.7

func (*ReqBehaviourCheck) ProtoMessage()

func (*ReqBehaviourCheck) Reset added in v1.3.7

func (m *ReqBehaviourCheck) Reset()

func (*ReqBehaviourCheck) String added in v1.3.7

func (m *ReqBehaviourCheck) String() string

func (*ReqBehaviourCheck) XXX_DiscardUnknown added in v1.3.7

func (m *ReqBehaviourCheck) XXX_DiscardUnknown()

func (*ReqBehaviourCheck) XXX_Marshal added in v1.3.7

func (m *ReqBehaviourCheck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqBehaviourCheck) XXX_Merge added in v1.3.7

func (m *ReqBehaviourCheck) XXX_Merge(src proto.Message)

func (*ReqBehaviourCheck) XXX_Size added in v1.3.7

func (m *ReqBehaviourCheck) XXX_Size() int

func (*ReqBehaviourCheck) XXX_Unmarshal added in v1.3.7

func (m *ReqBehaviourCheck) XXX_Unmarshal(b []byte) error

type ReqBehaviourList added in v1.3.7

type ReqBehaviourList struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Target               string   `protobuf:"bytes,2,opt,name=target,proto3" json:"target,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Scene                string   `protobuf:"bytes,7,opt,name=scene,proto3" json:"scene,omitempty"`
	Entity               string   `protobuf:"bytes,8,opt,name=entity,proto3" json:"entity,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqBehaviourList) Descriptor added in v1.3.7

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

func (*ReqBehaviourList) GetEntity added in v1.4.5

func (m *ReqBehaviourList) GetEntity() string

func (*ReqBehaviourList) GetScene added in v1.4.5

func (m *ReqBehaviourList) GetScene() string

func (*ReqBehaviourList) GetTarget added in v1.3.7

func (m *ReqBehaviourList) GetTarget() string

func (*ReqBehaviourList) GetType added in v1.3.7

func (m *ReqBehaviourList) GetType() uint32

func (*ReqBehaviourList) GetUser added in v1.3.7

func (m *ReqBehaviourList) GetUser() string

func (*ReqBehaviourList) ProtoMessage added in v1.3.7

func (*ReqBehaviourList) ProtoMessage()

func (*ReqBehaviourList) Reset added in v1.3.7

func (m *ReqBehaviourList) Reset()

func (*ReqBehaviourList) String added in v1.3.7

func (m *ReqBehaviourList) String() string

func (*ReqBehaviourList) XXX_DiscardUnknown added in v1.3.7

func (m *ReqBehaviourList) XXX_DiscardUnknown()

func (*ReqBehaviourList) XXX_Marshal added in v1.3.7

func (m *ReqBehaviourList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqBehaviourList) XXX_Merge added in v1.3.7

func (m *ReqBehaviourList) XXX_Merge(src proto.Message)

func (*ReqBehaviourList) XXX_Size added in v1.3.7

func (m *ReqBehaviourList) XXX_Size() int

func (*ReqBehaviourList) XXX_Unmarshal added in v1.3.7

func (m *ReqBehaviourList) XXX_Unmarshal(b []byte) error

type ReqBehaviourUpdate added in v1.3.7

type ReqBehaviourUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	User                 string   `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
	Target               string   `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	Action               uint32   `protobuf:"varint,4,opt,name=action,proto3" json:"action,omitempty"`
	Entity               string   `protobuf:"bytes,5,opt,name=entity,proto3" json:"entity,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqBehaviourUpdate) Descriptor added in v1.3.7

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

func (*ReqBehaviourUpdate) GetAction added in v1.3.7

func (m *ReqBehaviourUpdate) GetAction() uint32

func (*ReqBehaviourUpdate) GetEntity added in v1.4.5

func (m *ReqBehaviourUpdate) GetEntity() string

func (*ReqBehaviourUpdate) GetTarget added in v1.3.7

func (m *ReqBehaviourUpdate) GetTarget() string

func (*ReqBehaviourUpdate) GetUid added in v1.3.8

func (m *ReqBehaviourUpdate) GetUid() string

func (*ReqBehaviourUpdate) GetUser added in v1.3.7

func (m *ReqBehaviourUpdate) GetUser() string

func (*ReqBehaviourUpdate) ProtoMessage added in v1.3.7

func (*ReqBehaviourUpdate) ProtoMessage()

func (*ReqBehaviourUpdate) Reset added in v1.3.7

func (m *ReqBehaviourUpdate) Reset()

func (*ReqBehaviourUpdate) String added in v1.3.7

func (m *ReqBehaviourUpdate) String() string

func (*ReqBehaviourUpdate) XXX_DiscardUnknown added in v1.3.7

func (m *ReqBehaviourUpdate) XXX_DiscardUnknown()

func (*ReqBehaviourUpdate) XXX_Marshal added in v1.3.7

func (m *ReqBehaviourUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqBehaviourUpdate) XXX_Merge added in v1.3.7

func (m *ReqBehaviourUpdate) XXX_Merge(src proto.Message)

func (*ReqBehaviourUpdate) XXX_Size added in v1.3.7

func (m *ReqBehaviourUpdate) XXX_Size() int

func (*ReqBehaviourUpdate) XXX_Unmarshal added in v1.3.7

func (m *ReqBehaviourUpdate) XXX_Unmarshal(b []byte) error

type ReqMessageAdd added in v1.4.1

type ReqMessageAdd struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Quote                string   `protobuf:"bytes,2,opt,name=quote,proto3" json:"quote,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Stamp                uint64   `protobuf:"varint,5,opt,name=stamp,proto3" json:"stamp,omitempty"`
	Owner                string   `protobuf:"bytes,6,opt,name=owner,proto3" json:"owner,omitempty"`
	Targets              []string `protobuf:"bytes,11,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqMessageAdd) Descriptor added in v1.4.1

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

func (*ReqMessageAdd) GetOperator added in v1.4.1

func (m *ReqMessageAdd) GetOperator() string

func (*ReqMessageAdd) GetOwner added in v1.4.1

func (m *ReqMessageAdd) GetOwner() string

func (*ReqMessageAdd) GetQuote added in v1.4.1

func (m *ReqMessageAdd) GetQuote() string

func (*ReqMessageAdd) GetStamp added in v1.4.1

func (m *ReqMessageAdd) GetStamp() uint64

func (*ReqMessageAdd) GetTargets added in v1.4.1

func (m *ReqMessageAdd) GetTargets() []string

func (*ReqMessageAdd) GetType added in v1.4.1

func (m *ReqMessageAdd) GetType() uint32

func (*ReqMessageAdd) GetUser added in v1.4.1

func (m *ReqMessageAdd) GetUser() string

func (*ReqMessageAdd) ProtoMessage added in v1.4.1

func (*ReqMessageAdd) ProtoMessage()

func (*ReqMessageAdd) Reset added in v1.4.1

func (m *ReqMessageAdd) Reset()

func (*ReqMessageAdd) String added in v1.4.1

func (m *ReqMessageAdd) String() string

func (*ReqMessageAdd) XXX_DiscardUnknown added in v1.4.1

func (m *ReqMessageAdd) XXX_DiscardUnknown()

func (*ReqMessageAdd) XXX_Marshal added in v1.4.1

func (m *ReqMessageAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqMessageAdd) XXX_Merge added in v1.4.1

func (m *ReqMessageAdd) XXX_Merge(src proto.Message)

func (*ReqMessageAdd) XXX_Size added in v1.4.1

func (m *ReqMessageAdd) XXX_Size() int

func (*ReqMessageAdd) XXX_Unmarshal added in v1.4.1

func (m *ReqMessageAdd) XXX_Unmarshal(b []byte) error

type ReqScoreAdd added in v1.4.6

type ReqScoreAdd struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Scene                string   `protobuf:"bytes,2,opt,name=scene,proto3" json:"scene,omitempty"`
	Entity               string   `protobuf:"bytes,3,opt,name=entity,proto3" json:"entity,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Kind                 uint32   `protobuf:"varint,5,opt,name=kind,proto3" json:"kind,omitempty"`
	Count                uint32   `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"`
	Type                 uint32   `protobuf:"varint,7,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqScoreAdd) Descriptor added in v1.4.6

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

func (*ReqScoreAdd) GetCount added in v1.4.6

func (m *ReqScoreAdd) GetCount() uint32

func (*ReqScoreAdd) GetEntity added in v1.4.6

func (m *ReqScoreAdd) GetEntity() string

func (*ReqScoreAdd) GetKind added in v1.4.6

func (m *ReqScoreAdd) GetKind() uint32

func (*ReqScoreAdd) GetName added in v1.4.6

func (m *ReqScoreAdd) GetName() string

func (*ReqScoreAdd) GetOperator added in v1.4.6

func (m *ReqScoreAdd) GetOperator() string

func (*ReqScoreAdd) GetScene added in v1.4.6

func (m *ReqScoreAdd) GetScene() string

func (*ReqScoreAdd) GetType added in v1.4.6

func (m *ReqScoreAdd) GetType() uint32

func (*ReqScoreAdd) ProtoMessage added in v1.4.6

func (*ReqScoreAdd) ProtoMessage()

func (*ReqScoreAdd) Reset added in v1.4.6

func (m *ReqScoreAdd) Reset()

func (*ReqScoreAdd) String added in v1.4.6

func (m *ReqScoreAdd) String() string

func (*ReqScoreAdd) XXX_DiscardUnknown added in v1.4.6

func (m *ReqScoreAdd) XXX_DiscardUnknown()

func (*ReqScoreAdd) XXX_Marshal added in v1.4.6

func (m *ReqScoreAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqScoreAdd) XXX_Merge added in v1.4.6

func (m *ReqScoreAdd) XXX_Merge(src proto.Message)

func (*ReqScoreAdd) XXX_Size added in v1.4.6

func (m *ReqScoreAdd) XXX_Size() int

func (*ReqScoreAdd) XXX_Unmarshal added in v1.4.6

func (m *ReqScoreAdd) XXX_Unmarshal(b []byte) error

type ReqSetPasswords added in v1.1.0

type ReqSetPasswords struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Psw                  string   `protobuf:"bytes,2,opt,name=psw,proto3" json:"psw,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqSetPasswords) Descriptor added in v1.1.0

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

func (*ReqSetPasswords) GetOperator added in v1.1.0

func (m *ReqSetPasswords) GetOperator() string

func (*ReqSetPasswords) GetPsw added in v1.1.0

func (m *ReqSetPasswords) GetPsw() string

func (*ReqSetPasswords) GetUid added in v1.1.3

func (m *ReqSetPasswords) GetUid() string

func (*ReqSetPasswords) ProtoMessage added in v1.1.0

func (*ReqSetPasswords) ProtoMessage()

func (*ReqSetPasswords) Reset added in v1.1.0

func (m *ReqSetPasswords) Reset()

func (*ReqSetPasswords) String added in v1.1.0

func (m *ReqSetPasswords) String() string

func (*ReqSetPasswords) XXX_DiscardUnknown added in v1.2.8

func (m *ReqSetPasswords) XXX_DiscardUnknown()

func (*ReqSetPasswords) XXX_Marshal added in v1.2.8

func (m *ReqSetPasswords) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqSetPasswords) XXX_Merge added in v1.2.8

func (m *ReqSetPasswords) XXX_Merge(src proto.Message)

func (*ReqSetPasswords) XXX_Size added in v1.2.8

func (m *ReqSetPasswords) XXX_Size() int

func (*ReqSetPasswords) XXX_Unmarshal added in v1.2.8

func (m *ReqSetPasswords) XXX_Unmarshal(b []byte) error

type ReqSignIn added in v1.1.0

type ReqSignIn struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Psw                  string   `protobuf:"bytes,2,opt,name=psw,proto3" json:"psw,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqSignIn) Descriptor added in v1.1.0

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

func (*ReqSignIn) GetName added in v1.1.0

func (m *ReqSignIn) GetName() string

func (*ReqSignIn) GetPsw added in v1.1.0

func (m *ReqSignIn) GetPsw() string

func (*ReqSignIn) ProtoMessage added in v1.1.0

func (*ReqSignIn) ProtoMessage()

func (*ReqSignIn) Reset added in v1.1.0

func (m *ReqSignIn) Reset()

func (*ReqSignIn) String added in v1.1.0

func (m *ReqSignIn) String() string

func (*ReqSignIn) XXX_DiscardUnknown added in v1.2.8

func (m *ReqSignIn) XXX_DiscardUnknown()

func (*ReqSignIn) XXX_Marshal added in v1.2.8

func (m *ReqSignIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqSignIn) XXX_Merge added in v1.2.8

func (m *ReqSignIn) XXX_Merge(src proto.Message)

func (*ReqSignIn) XXX_Size added in v1.2.8

func (m *ReqSignIn) XXX_Size() int

func (*ReqSignIn) XXX_Unmarshal added in v1.2.8

func (m *ReqSignIn) XXX_Unmarshal(b []byte) error

type ReqUpdateFilter added in v1.4.0

type ReqUpdateFilter struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Uid                  string   `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Key                  string   `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Values               []string `protobuf:"bytes,11,rep,name=values,proto3" json:"values,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUpdateFilter) Descriptor added in v1.4.0

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

func (*ReqUpdateFilter) GetKey added in v1.4.0

func (m *ReqUpdateFilter) GetKey() string

func (*ReqUpdateFilter) GetOperator added in v1.4.0

func (m *ReqUpdateFilter) GetOperator() string

func (*ReqUpdateFilter) GetOwner added in v1.4.0

func (m *ReqUpdateFilter) GetOwner() string

func (*ReqUpdateFilter) GetUid added in v1.4.0

func (m *ReqUpdateFilter) GetUid() string

func (*ReqUpdateFilter) GetValue added in v1.4.0

func (m *ReqUpdateFilter) GetValue() string

func (*ReqUpdateFilter) GetValues added in v1.4.0

func (m *ReqUpdateFilter) GetValues() []string

func (*ReqUpdateFilter) ProtoMessage added in v1.4.0

func (*ReqUpdateFilter) ProtoMessage()

func (*ReqUpdateFilter) Reset added in v1.4.0

func (m *ReqUpdateFilter) Reset()

func (*ReqUpdateFilter) String added in v1.4.0

func (m *ReqUpdateFilter) String() string

func (*ReqUpdateFilter) XXX_DiscardUnknown added in v1.4.0

func (m *ReqUpdateFilter) XXX_DiscardUnknown()

func (*ReqUpdateFilter) XXX_Marshal added in v1.4.0

func (m *ReqUpdateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUpdateFilter) XXX_Merge added in v1.4.0

func (m *ReqUpdateFilter) XXX_Merge(src proto.Message)

func (*ReqUpdateFilter) XXX_Size added in v1.4.0

func (m *ReqUpdateFilter) XXX_Size() int

func (*ReqUpdateFilter) XXX_Unmarshal added in v1.4.0

func (m *ReqUpdateFilter) XXX_Unmarshal(b []byte) error

type ReqUserAdd

type ReqUserAdd struct {
	Name                 string     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Sex                  UserSex    `protobuf:"varint,2,opt,name=sex,proto3,enum=omo.msp.user.UserSex" json:"sex,omitempty"`
	Type                 UserType   `protobuf:"varint,3,opt,name=type,proto3,enum=omo.msp.user.UserType" json:"type,omitempty"`
	Account              string     `protobuf:"bytes,4,opt,name=account,proto3" json:"account,omitempty"`
	Phone                string     `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
	Remark               string     `protobuf:"bytes,6,opt,name=remark,proto3" json:"remark,omitempty"`
	Nick                 string     `protobuf:"bytes,7,opt,name=nick,proto3" json:"nick,omitempty"`
	Operator             string     `protobuf:"bytes,8,opt,name=operator,proto3" json:"operator,omitempty"`
	Passwords            string     `protobuf:"bytes,9,opt,name=passwords,proto3" json:"passwords,omitempty"`
	Entity               string     `protobuf:"bytes,10,opt,name=entity,proto3" json:"entity,omitempty"`
	Portrait             string     `protobuf:"bytes,11,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Sns                  *SNSInfo   `protobuf:"bytes,12,opt,name=sns,proto3" json:"sns,omitempty"`
	Shown                *ShownInfo `protobuf:"bytes,13,opt,name=shown,proto3" json:"shown,omitempty"`
	Tags                 []string   `protobuf:"bytes,21,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ReqUserAdd) Descriptor

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

func (*ReqUserAdd) GetAccount

func (m *ReqUserAdd) GetAccount() string

func (*ReqUserAdd) GetEntity added in v1.1.4

func (m *ReqUserAdd) GetEntity() string

func (*ReqUserAdd) GetName

func (m *ReqUserAdd) GetName() string

func (*ReqUserAdd) GetNick added in v1.1.2

func (m *ReqUserAdd) GetNick() string

func (*ReqUserAdd) GetOperator added in v1.0.3

func (m *ReqUserAdd) GetOperator() string

func (*ReqUserAdd) GetPasswords added in v1.1.2

func (m *ReqUserAdd) GetPasswords() string

func (*ReqUserAdd) GetPhone

func (m *ReqUserAdd) GetPhone() string

func (*ReqUserAdd) GetPortrait added in v1.2.4

func (m *ReqUserAdd) GetPortrait() string

func (*ReqUserAdd) GetRemark added in v1.0.2

func (m *ReqUserAdd) GetRemark() string

func (*ReqUserAdd) GetSex

func (m *ReqUserAdd) GetSex() UserSex

func (*ReqUserAdd) GetShown added in v1.4.7

func (m *ReqUserAdd) GetShown() *ShownInfo

func (*ReqUserAdd) GetSns added in v1.2.0

func (m *ReqUserAdd) GetSns() *SNSInfo

func (*ReqUserAdd) GetTags added in v1.3.0

func (m *ReqUserAdd) GetTags() []string

func (*ReqUserAdd) GetType added in v1.0.5

func (m *ReqUserAdd) GetType() UserType

func (*ReqUserAdd) ProtoMessage

func (*ReqUserAdd) ProtoMessage()

func (*ReqUserAdd) Reset

func (m *ReqUserAdd) Reset()

func (*ReqUserAdd) String

func (m *ReqUserAdd) String() string

func (*ReqUserAdd) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserAdd) XXX_DiscardUnknown()

func (*ReqUserAdd) XXX_Marshal added in v1.2.8

func (m *ReqUserAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserAdd) XXX_Merge added in v1.2.8

func (m *ReqUserAdd) XXX_Merge(src proto.Message)

func (*ReqUserAdd) XXX_Size added in v1.2.8

func (m *ReqUserAdd) XXX_Size() int

func (*ReqUserAdd) XXX_Unmarshal added in v1.2.8

func (m *ReqUserAdd) XXX_Unmarshal(b []byte) error

type ReqUserBy added in v1.2.1

type ReqUserBy struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Type                 uint32   `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserBy) Descriptor added in v1.2.1

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

func (*ReqUserBy) GetType added in v1.2.1

func (m *ReqUserBy) GetType() uint32

func (*ReqUserBy) GetUid added in v1.2.1

func (m *ReqUserBy) GetUid() string

func (*ReqUserBy) ProtoMessage added in v1.2.1

func (*ReqUserBy) ProtoMessage()

func (*ReqUserBy) Reset added in v1.2.1

func (m *ReqUserBy) Reset()

func (*ReqUserBy) String added in v1.2.1

func (m *ReqUserBy) String() string

func (*ReqUserBy) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserBy) XXX_DiscardUnknown()

func (*ReqUserBy) XXX_Marshal added in v1.2.8

func (m *ReqUserBy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserBy) XXX_Merge added in v1.2.8

func (m *ReqUserBy) XXX_Merge(src proto.Message)

func (*ReqUserBy) XXX_Size added in v1.2.8

func (m *ReqUserBy) XXX_Size() int

func (*ReqUserBy) XXX_Unmarshal added in v1.2.8

func (m *ReqUserBy) XXX_Unmarshal(b []byte) error

type ReqUserEntity added in v1.1.4

type ReqUserEntity struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Entity               string   `protobuf:"bytes,2,opt,name=entity,proto3" json:"entity,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserEntity) Descriptor added in v1.1.4

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

func (*ReqUserEntity) GetEntity added in v1.1.4

func (m *ReqUserEntity) GetEntity() string

func (*ReqUserEntity) GetOperator added in v1.3.4

func (m *ReqUserEntity) GetOperator() string

func (*ReqUserEntity) GetUid added in v1.1.4

func (m *ReqUserEntity) GetUid() string

func (*ReqUserEntity) ProtoMessage added in v1.1.4

func (*ReqUserEntity) ProtoMessage()

func (*ReqUserEntity) Reset added in v1.1.4

func (m *ReqUserEntity) Reset()

func (*ReqUserEntity) String added in v1.1.4

func (m *ReqUserEntity) String() string

func (*ReqUserEntity) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserEntity) XXX_DiscardUnknown()

func (*ReqUserEntity) XXX_Marshal added in v1.2.8

func (m *ReqUserEntity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserEntity) XXX_Merge added in v1.2.8

func (m *ReqUserEntity) XXX_Merge(src proto.Message)

func (*ReqUserEntity) XXX_Size added in v1.2.8

func (m *ReqUserEntity) XXX_Size() int

func (*ReqUserEntity) XXX_Unmarshal added in v1.2.8

func (m *ReqUserEntity) XXX_Unmarshal(b []byte) error

type ReqUserList added in v1.0.2

type ReqUserList struct {
	List                 []string `protobuf:"bytes,4,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserList) Descriptor added in v1.0.2

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

func (*ReqUserList) GetList added in v1.0.2

func (m *ReqUserList) GetList() []string

func (*ReqUserList) ProtoMessage added in v1.0.2

func (*ReqUserList) ProtoMessage()

func (*ReqUserList) Reset added in v1.0.2

func (m *ReqUserList) Reset()

func (*ReqUserList) String added in v1.0.2

func (m *ReqUserList) String() string

func (*ReqUserList) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserList) XXX_DiscardUnknown()

func (*ReqUserList) XXX_Marshal added in v1.2.8

func (m *ReqUserList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserList) XXX_Merge added in v1.2.8

func (m *ReqUserList) XXX_Merge(src proto.Message)

func (*ReqUserList) XXX_Size added in v1.2.8

func (m *ReqUserList) XXX_Size() int

func (*ReqUserList) XXX_Unmarshal added in v1.2.8

func (m *ReqUserList) XXX_Unmarshal(b []byte) error

type ReqUserPhone added in v1.3.3

type ReqUserPhone struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Phone                string   `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserPhone) Descriptor added in v1.3.3

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

func (*ReqUserPhone) GetOperator added in v1.3.4

func (m *ReqUserPhone) GetOperator() string

func (*ReqUserPhone) GetPhone added in v1.3.3

func (m *ReqUserPhone) GetPhone() string

func (*ReqUserPhone) GetUid added in v1.3.3

func (m *ReqUserPhone) GetUid() string

func (*ReqUserPhone) ProtoMessage added in v1.3.3

func (*ReqUserPhone) ProtoMessage()

func (*ReqUserPhone) Reset added in v1.3.3

func (m *ReqUserPhone) Reset()

func (*ReqUserPhone) String added in v1.3.3

func (m *ReqUserPhone) String() string

func (*ReqUserPhone) XXX_DiscardUnknown added in v1.3.3

func (m *ReqUserPhone) XXX_DiscardUnknown()

func (*ReqUserPhone) XXX_Marshal added in v1.3.3

func (m *ReqUserPhone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserPhone) XXX_Merge added in v1.3.3

func (m *ReqUserPhone) XXX_Merge(src proto.Message)

func (*ReqUserPhone) XXX_Size added in v1.3.3

func (m *ReqUserPhone) XXX_Size() int

func (*ReqUserPhone) XXX_Unmarshal added in v1.3.3

func (m *ReqUserPhone) XXX_Unmarshal(b []byte) error

type ReqUserSNS added in v1.1.6

type ReqUserSNS struct {
	User                 string   `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	Add                  bool     `protobuf:"varint,2,opt,name=add,proto3" json:"add,omitempty"`
	Type                 uint32   `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
	Name                 string   `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Uid                  string   `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserSNS) Descriptor added in v1.1.6

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

func (*ReqUserSNS) GetAdd added in v1.1.6

func (m *ReqUserSNS) GetAdd() bool

func (*ReqUserSNS) GetName added in v1.1.6

func (m *ReqUserSNS) GetName() string

func (*ReqUserSNS) GetOperator added in v1.1.6

func (m *ReqUserSNS) GetOperator() string

func (*ReqUserSNS) GetType added in v1.1.6

func (m *ReqUserSNS) GetType() uint32

func (*ReqUserSNS) GetUid added in v1.1.6

func (m *ReqUserSNS) GetUid() string

func (*ReqUserSNS) GetUser added in v1.1.6

func (m *ReqUserSNS) GetUser() string

func (*ReqUserSNS) ProtoMessage added in v1.1.6

func (*ReqUserSNS) ProtoMessage()

func (*ReqUserSNS) Reset added in v1.1.6

func (m *ReqUserSNS) Reset()

func (*ReqUserSNS) String added in v1.1.6

func (m *ReqUserSNS) String() string

func (*ReqUserSNS) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserSNS) XXX_DiscardUnknown()

func (*ReqUserSNS) XXX_Marshal added in v1.2.8

func (m *ReqUserSNS) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserSNS) XXX_Merge added in v1.2.8

func (m *ReqUserSNS) XXX_Merge(src proto.Message)

func (*ReqUserSNS) XXX_Size added in v1.2.8

func (m *ReqUserSNS) XXX_Size() int

func (*ReqUserSNS) XXX_Unmarshal added in v1.2.8

func (m *ReqUserSNS) XXX_Unmarshal(b []byte) error

type ReqUserSearch added in v1.3.0

type ReqUserSearch struct {
	Type                 UserType `protobuf:"varint,1,opt,name=type,proto3,enum=omo.msp.user.UserType" json:"type,omitempty"`
	Tags                 []string `protobuf:"bytes,11,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserSearch) Descriptor added in v1.3.0

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

func (*ReqUserSearch) GetTags added in v1.3.2

func (m *ReqUserSearch) GetTags() []string

func (*ReqUserSearch) GetType added in v1.3.0

func (m *ReqUserSearch) GetType() UserType

func (*ReqUserSearch) ProtoMessage added in v1.3.0

func (*ReqUserSearch) ProtoMessage()

func (*ReqUserSearch) Reset added in v1.3.0

func (m *ReqUserSearch) Reset()

func (*ReqUserSearch) String added in v1.3.0

func (m *ReqUserSearch) String() string

func (*ReqUserSearch) XXX_DiscardUnknown added in v1.3.0

func (m *ReqUserSearch) XXX_DiscardUnknown()

func (*ReqUserSearch) XXX_Marshal added in v1.3.0

func (m *ReqUserSearch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserSearch) XXX_Merge added in v1.3.0

func (m *ReqUserSearch) XXX_Merge(src proto.Message)

func (*ReqUserSearch) XXX_Size added in v1.3.0

func (m *ReqUserSearch) XXX_Size() int

func (*ReqUserSearch) XXX_Unmarshal added in v1.3.0

func (m *ReqUserSearch) XXX_Unmarshal(b []byte) error

type ReqUserTags added in v1.2.8

type ReqUserTags struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	Tags                 []string `protobuf:"bytes,11,rep,name=tags,proto3" json:"tags,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserTags) Descriptor added in v1.2.8

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

func (*ReqUserTags) GetOperator added in v1.3.0

func (m *ReqUserTags) GetOperator() string

func (*ReqUserTags) GetTags added in v1.2.8

func (m *ReqUserTags) GetTags() []string

func (*ReqUserTags) GetUid added in v1.2.8

func (m *ReqUserTags) GetUid() string

func (*ReqUserTags) ProtoMessage added in v1.2.8

func (*ReqUserTags) ProtoMessage()

func (*ReqUserTags) Reset added in v1.2.8

func (m *ReqUserTags) Reset()

func (*ReqUserTags) String added in v1.2.8

func (m *ReqUserTags) String() string

func (*ReqUserTags) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserTags) XXX_DiscardUnknown()

func (*ReqUserTags) XXX_Marshal added in v1.2.8

func (m *ReqUserTags) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserTags) XXX_Merge added in v1.2.8

func (m *ReqUserTags) XXX_Merge(src proto.Message)

func (*ReqUserTags) XXX_Size added in v1.2.8

func (m *ReqUserTags) XXX_Size() int

func (*ReqUserTags) XXX_Unmarshal added in v1.2.8

func (m *ReqUserTags) XXX_Unmarshal(b []byte) error

type ReqUserUpdate

type ReqUserUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	NickName             string   `protobuf:"bytes,3,opt,name=nickName,proto3" json:"nickName,omitempty"`
	Job                  string   `protobuf:"bytes,4,opt,name=job,proto3" json:"job,omitempty"`
	Remark               string   `protobuf:"bytes,5,opt,name=remark,proto3" json:"remark,omitempty"`
	Sex                  UserSex  `protobuf:"varint,6,opt,name=sex,proto3,enum=omo.msp.user.UserSex" json:"sex,omitempty"`
	Operator             string   `protobuf:"bytes,7,opt,name=operator,proto3" json:"operator,omitempty"`
	Portrait             string   `protobuf:"bytes,8,opt,name=portrait,proto3" json:"portrait,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqUserUpdate) Descriptor

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

func (*ReqUserUpdate) GetJob

func (m *ReqUserUpdate) GetJob() string

func (*ReqUserUpdate) GetName

func (m *ReqUserUpdate) GetName() string

func (*ReqUserUpdate) GetNickName

func (m *ReqUserUpdate) GetNickName() string

func (*ReqUserUpdate) GetOperator added in v1.0.3

func (m *ReqUserUpdate) GetOperator() string

func (*ReqUserUpdate) GetPortrait added in v1.2.4

func (m *ReqUserUpdate) GetPortrait() string

func (*ReqUserUpdate) GetRemark

func (m *ReqUserUpdate) GetRemark() string

func (*ReqUserUpdate) GetSex

func (m *ReqUserUpdate) GetSex() UserSex

func (*ReqUserUpdate) GetUid added in v1.0.2

func (m *ReqUserUpdate) GetUid() string

func (*ReqUserUpdate) ProtoMessage

func (*ReqUserUpdate) ProtoMessage()

func (*ReqUserUpdate) Reset

func (m *ReqUserUpdate) Reset()

func (*ReqUserUpdate) String

func (m *ReqUserUpdate) String() string

func (*ReqUserUpdate) XXX_DiscardUnknown added in v1.2.8

func (m *ReqUserUpdate) XXX_DiscardUnknown()

func (*ReqUserUpdate) XXX_Marshal added in v1.2.8

func (m *ReqUserUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqUserUpdate) XXX_Merge added in v1.2.8

func (m *ReqUserUpdate) XXX_Merge(src proto.Message)

func (*ReqUserUpdate) XXX_Size added in v1.2.8

func (m *ReqUserUpdate) XXX_Size() int

func (*ReqUserUpdate) XXX_Unmarshal added in v1.2.8

func (m *ReqUserUpdate) XXX_Unmarshal(b []byte) error

type ReqWechatAdd added in v1.1.6

type ReqWechatAdd struct {
	Open                 string   `protobuf:"bytes,1,opt,name=open,proto3" json:"open,omitempty"`
	Union                string   `protobuf:"bytes,2,opt,name=union,proto3" json:"union,omitempty"`
	Portrait             string   `protobuf:"bytes,3,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Operator             string   `protobuf:"bytes,4,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqWechatAdd) Descriptor added in v1.1.6

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

func (*ReqWechatAdd) GetName added in v1.2.0

func (m *ReqWechatAdd) GetName() string

func (*ReqWechatAdd) GetOpen added in v1.1.6

func (m *ReqWechatAdd) GetOpen() string

func (*ReqWechatAdd) GetOperator added in v1.1.6

func (m *ReqWechatAdd) GetOperator() string

func (*ReqWechatAdd) GetPortrait added in v1.1.6

func (m *ReqWechatAdd) GetPortrait() string

func (*ReqWechatAdd) GetUnion added in v1.1.6

func (m *ReqWechatAdd) GetUnion() string

func (*ReqWechatAdd) ProtoMessage added in v1.1.6

func (*ReqWechatAdd) ProtoMessage()

func (*ReqWechatAdd) Reset added in v1.1.6

func (m *ReqWechatAdd) Reset()

func (*ReqWechatAdd) String added in v1.1.6

func (m *ReqWechatAdd) String() string

func (*ReqWechatAdd) XXX_DiscardUnknown added in v1.2.8

func (m *ReqWechatAdd) XXX_DiscardUnknown()

func (*ReqWechatAdd) XXX_Marshal added in v1.2.8

func (m *ReqWechatAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqWechatAdd) XXX_Merge added in v1.2.8

func (m *ReqWechatAdd) XXX_Merge(src proto.Message)

func (*ReqWechatAdd) XXX_Size added in v1.2.8

func (m *ReqWechatAdd) XXX_Size() int

func (*ReqWechatAdd) XXX_Unmarshal added in v1.2.8

func (m *ReqWechatAdd) XXX_Unmarshal(b []byte) error

type ReqWechatBy added in v1.2.1

type ReqWechatBy struct {
	Uid                  string     `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Type                 WechatType `protobuf:"varint,2,opt,name=type,proto3,enum=omo.msp.user.WechatType" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*ReqWechatBy) Descriptor added in v1.2.1

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

func (*ReqWechatBy) GetType added in v1.2.1

func (m *ReqWechatBy) GetType() WechatType

func (*ReqWechatBy) GetUid added in v1.2.1

func (m *ReqWechatBy) GetUid() string

func (*ReqWechatBy) ProtoMessage added in v1.2.1

func (*ReqWechatBy) ProtoMessage()

func (*ReqWechatBy) Reset added in v1.2.1

func (m *ReqWechatBy) Reset()

func (*ReqWechatBy) String added in v1.2.1

func (m *ReqWechatBy) String() string

func (*ReqWechatBy) XXX_DiscardUnknown added in v1.2.8

func (m *ReqWechatBy) XXX_DiscardUnknown()

func (*ReqWechatBy) XXX_Marshal added in v1.2.8

func (m *ReqWechatBy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqWechatBy) XXX_Merge added in v1.2.8

func (m *ReqWechatBy) XXX_Merge(src proto.Message)

func (*ReqWechatBy) XXX_Size added in v1.2.8

func (m *ReqWechatBy) XXX_Size() int

func (*ReqWechatBy) XXX_Unmarshal added in v1.2.8

func (m *ReqWechatBy) XXX_Unmarshal(b []byte) error

type ReqWechatUpdate added in v1.1.6

type ReqWechatUpdate struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Open                 string   `protobuf:"bytes,2,opt,name=open,proto3" json:"open,omitempty"`
	Union                string   `protobuf:"bytes,3,opt,name=union,proto3" json:"union,omitempty"`
	Portrait             string   `protobuf:"bytes,4,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Operator             string   `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string   `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqWechatUpdate) Descriptor added in v1.1.6

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

func (*ReqWechatUpdate) GetName added in v1.2.0

func (m *ReqWechatUpdate) GetName() string

func (*ReqWechatUpdate) GetOpen added in v1.1.6

func (m *ReqWechatUpdate) GetOpen() string

func (*ReqWechatUpdate) GetOperator added in v1.1.6

func (m *ReqWechatUpdate) GetOperator() string

func (*ReqWechatUpdate) GetPortrait added in v1.1.6

func (m *ReqWechatUpdate) GetPortrait() string

func (*ReqWechatUpdate) GetUid added in v1.1.6

func (m *ReqWechatUpdate) GetUid() string

func (*ReqWechatUpdate) GetUnion added in v1.1.6

func (m *ReqWechatUpdate) GetUnion() string

func (*ReqWechatUpdate) ProtoMessage added in v1.1.6

func (*ReqWechatUpdate) ProtoMessage()

func (*ReqWechatUpdate) Reset added in v1.1.6

func (m *ReqWechatUpdate) Reset()

func (*ReqWechatUpdate) String added in v1.1.6

func (m *ReqWechatUpdate) String() string

func (*ReqWechatUpdate) XXX_DiscardUnknown added in v1.2.8

func (m *ReqWechatUpdate) XXX_DiscardUnknown()

func (*ReqWechatUpdate) XXX_Marshal added in v1.2.8

func (m *ReqWechatUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqWechatUpdate) XXX_Merge added in v1.2.8

func (m *ReqWechatUpdate) XXX_Merge(src proto.Message)

func (*ReqWechatUpdate) XXX_Size added in v1.2.8

func (m *ReqWechatUpdate) XXX_Size() int

func (*ReqWechatUpdate) XXX_Unmarshal added in v1.2.8

func (m *ReqWechatUpdate) XXX_Unmarshal(b []byte) error

type RequestFilter added in v1.4.4

type RequestFilter struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Uid                  string   `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Key                  string   `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Page                 uint32   `protobuf:"varint,5,opt,name=page,proto3" json:"page,omitempty"`
	Number               uint32   `protobuf:"varint,6,opt,name=number,proto3" json:"number,omitempty"`
	Values               []string `protobuf:"bytes,11,rep,name=values,proto3" json:"values,omitempty"`
	List                 []string `protobuf:"bytes,12,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestFilter) Descriptor added in v1.4.4

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

func (*RequestFilter) GetKey added in v1.4.4

func (m *RequestFilter) GetKey() string

func (*RequestFilter) GetList added in v1.4.4

func (m *RequestFilter) GetList() []string

func (*RequestFilter) GetNumber added in v1.4.4

func (m *RequestFilter) GetNumber() uint32

func (*RequestFilter) GetOwner added in v1.4.4

func (m *RequestFilter) GetOwner() string

func (*RequestFilter) GetPage added in v1.4.4

func (m *RequestFilter) GetPage() uint32

func (*RequestFilter) GetUid added in v1.4.4

func (m *RequestFilter) GetUid() string

func (*RequestFilter) GetValue added in v1.4.4

func (m *RequestFilter) GetValue() string

func (*RequestFilter) GetValues added in v1.4.4

func (m *RequestFilter) GetValues() []string

func (*RequestFilter) ProtoMessage added in v1.4.4

func (*RequestFilter) ProtoMessage()

func (*RequestFilter) Reset added in v1.4.4

func (m *RequestFilter) Reset()

func (*RequestFilter) String added in v1.4.4

func (m *RequestFilter) String() string

func (*RequestFilter) XXX_DiscardUnknown added in v1.4.4

func (m *RequestFilter) XXX_DiscardUnknown()

func (*RequestFilter) XXX_Marshal added in v1.4.4

func (m *RequestFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestFilter) XXX_Merge added in v1.4.4

func (m *RequestFilter) XXX_Merge(src proto.Message)

func (*RequestFilter) XXX_Size added in v1.4.4

func (m *RequestFilter) XXX_Size() int

func (*RequestFilter) XXX_Unmarshal added in v1.4.4

func (m *RequestFilter) XXX_Unmarshal(b []byte) error

type RequestIDInfo added in v1.2.5

type RequestIDInfo struct {
	Id                   uint64   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Operator             string   `protobuf:"bytes,2,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestIDInfo) Descriptor added in v1.2.5

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

func (*RequestIDInfo) GetId added in v1.2.5

func (m *RequestIDInfo) GetId() uint64

func (*RequestIDInfo) GetOperator added in v1.2.5

func (m *RequestIDInfo) GetOperator() string

func (*RequestIDInfo) ProtoMessage added in v1.2.5

func (*RequestIDInfo) ProtoMessage()

func (*RequestIDInfo) Reset added in v1.2.5

func (m *RequestIDInfo) Reset()

func (*RequestIDInfo) String added in v1.2.5

func (m *RequestIDInfo) String() string

func (*RequestIDInfo) XXX_DiscardUnknown added in v1.2.8

func (m *RequestIDInfo) XXX_DiscardUnknown()

func (*RequestIDInfo) XXX_Marshal added in v1.2.8

func (m *RequestIDInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestIDInfo) XXX_Merge added in v1.2.8

func (m *RequestIDInfo) XXX_Merge(src proto.Message)

func (*RequestIDInfo) XXX_Size added in v1.2.8

func (m *RequestIDInfo) XXX_Size() int

func (*RequestIDInfo) XXX_Unmarshal added in v1.2.8

func (m *RequestIDInfo) XXX_Unmarshal(b []byte) error

type RequestInfo

type RequestInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Entity               string   `protobuf:"bytes,2,opt,name=entity,proto3" json:"entity,omitempty"`
	Operator             string   `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestInfo) Descriptor

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

func (*RequestInfo) GetEntity added in v1.1.5

func (m *RequestInfo) GetEntity() string

func (*RequestInfo) GetOperator added in v1.0.4

func (m *RequestInfo) GetOperator() string

func (*RequestInfo) GetUid

func (m *RequestInfo) GetUid() string

func (*RequestInfo) ProtoMessage

func (*RequestInfo) ProtoMessage()

func (*RequestInfo) Reset

func (m *RequestInfo) Reset()

func (*RequestInfo) String

func (m *RequestInfo) String() string

func (*RequestInfo) XXX_DiscardUnknown added in v1.2.8

func (m *RequestInfo) XXX_DiscardUnknown()

func (*RequestInfo) XXX_Marshal added in v1.2.8

func (m *RequestInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestInfo) XXX_Merge added in v1.2.8

func (m *RequestInfo) XXX_Merge(src proto.Message)

func (*RequestInfo) XXX_Size added in v1.2.8

func (m *RequestInfo) XXX_Size() int

func (*RequestInfo) XXX_Unmarshal added in v1.2.8

func (m *RequestInfo) XXX_Unmarshal(b []byte) error

type RequestList added in v1.3.9

type RequestList struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	List                 []string `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestList) Descriptor added in v1.3.9

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

func (*RequestList) GetList added in v1.3.9

func (m *RequestList) GetList() []string

func (*RequestList) GetUid added in v1.3.9

func (m *RequestList) GetUid() string

func (*RequestList) ProtoMessage added in v1.3.9

func (*RequestList) ProtoMessage()

func (*RequestList) Reset added in v1.3.9

func (m *RequestList) Reset()

func (*RequestList) String added in v1.3.9

func (m *RequestList) String() string

func (*RequestList) XXX_DiscardUnknown added in v1.3.9

func (m *RequestList) XXX_DiscardUnknown()

func (*RequestList) XXX_Marshal added in v1.3.9

func (m *RequestList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestList) XXX_Merge added in v1.3.9

func (m *RequestList) XXX_Merge(src proto.Message)

func (*RequestList) XXX_Size added in v1.3.9

func (m *RequestList) XXX_Size() int

func (*RequestList) XXX_Unmarshal added in v1.3.9

func (m *RequestList) XXX_Unmarshal(b []byte) error

type RequestPage added in v1.0.3

type RequestPage struct {
	Number               uint32   `protobuf:"varint,1,opt,name=number,proto3" json:"number,omitempty"`
	Page                 uint32   `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"`
	Key                  string   `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Param                string   `protobuf:"bytes,5,opt,name=param,proto3" json:"param,omitempty"`
	List                 []string `protobuf:"bytes,11,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RequestPage) Descriptor added in v1.0.3

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

func (*RequestPage) GetKey added in v1.4.0

func (m *RequestPage) GetKey() string

func (*RequestPage) GetList added in v1.4.1

func (m *RequestPage) GetList() []string

func (*RequestPage) GetNumber added in v1.0.3

func (m *RequestPage) GetNumber() uint32

func (*RequestPage) GetPage added in v1.0.3

func (m *RequestPage) GetPage() uint32

func (*RequestPage) GetParam added in v1.4.2

func (m *RequestPage) GetParam() string

func (*RequestPage) GetValue added in v1.4.0

func (m *RequestPage) GetValue() string

func (*RequestPage) ProtoMessage added in v1.0.3

func (*RequestPage) ProtoMessage()

func (*RequestPage) Reset added in v1.0.3

func (m *RequestPage) Reset()

func (*RequestPage) String added in v1.0.3

func (m *RequestPage) String() string

func (*RequestPage) XXX_DiscardUnknown added in v1.2.8

func (m *RequestPage) XXX_DiscardUnknown()

func (*RequestPage) XXX_Marshal added in v1.2.8

func (m *RequestPage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RequestPage) XXX_Merge added in v1.2.8

func (m *RequestPage) XXX_Merge(src proto.Message)

func (*RequestPage) XXX_Size added in v1.2.8

func (m *RequestPage) XXX_Size() int

func (*RequestPage) XXX_Unmarshal added in v1.2.8

func (m *RequestPage) XXX_Unmarshal(b []byte) error

type ResultCode added in v1.1.1

type ResultCode int32
const (
	ResultCode_Success     ResultCode = 0
	ResultCode_MaxLimit    ResultCode = 1
	ResultCode_Repeated    ResultCode = 2
	ResultCode_NotExisted  ResultCode = 3
	ResultCode_DBException ResultCode = 4
	ResultCode_Empty       ResultCode = 5
)

func (ResultCode) EnumDescriptor added in v1.1.1

func (ResultCode) EnumDescriptor() ([]byte, []int)

func (ResultCode) String added in v1.1.1

func (x ResultCode) String() string

type SNSInfo added in v1.1.6

type SNSInfo struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Uid                  string   `protobuf:"bytes,3,opt,name=uid,proto3" json:"uid,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SNSInfo) Descriptor added in v1.1.6

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

func (*SNSInfo) GetName added in v1.1.6

func (m *SNSInfo) GetName() string

func (*SNSInfo) GetType added in v1.1.6

func (m *SNSInfo) GetType() uint32

func (*SNSInfo) GetUid added in v1.1.6

func (m *SNSInfo) GetUid() string

func (*SNSInfo) ProtoMessage added in v1.1.6

func (*SNSInfo) ProtoMessage()

func (*SNSInfo) Reset added in v1.1.6

func (m *SNSInfo) Reset()

func (*SNSInfo) String added in v1.1.6

func (m *SNSInfo) String() string

func (*SNSInfo) XXX_DiscardUnknown added in v1.2.8

func (m *SNSInfo) XXX_DiscardUnknown()

func (*SNSInfo) XXX_Marshal added in v1.2.8

func (m *SNSInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SNSInfo) XXX_Merge added in v1.2.8

func (m *SNSInfo) XXX_Merge(src proto.Message)

func (*SNSInfo) XXX_Size added in v1.2.8

func (m *SNSInfo) XXX_Size() int

func (*SNSInfo) XXX_Unmarshal added in v1.2.8

func (m *SNSInfo) XXX_Unmarshal(b []byte) error

type ScoreInfo added in v1.4.6

type ScoreInfo struct {
	Uid                  string       `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Created              int64        `protobuf:"varint,2,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64        `protobuf:"varint,3,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string       `protobuf:"bytes,4,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string       `protobuf:"bytes,5,opt,name=operator,proto3" json:"operator,omitempty"`
	Name                 string       `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Scene                string       `protobuf:"bytes,7,opt,name=scene,proto3" json:"scene,omitempty"`
	Entity               string       `protobuf:"bytes,8,opt,name=entity,proto3" json:"entity,omitempty"`
	Type                 uint32       `protobuf:"varint,9,opt,name=type,proto3" json:"type,omitempty"`
	Total                uint64       `protobuf:"varint,10,opt,name=total,proto3" json:"total,omitempty"`
	List                 []*ScorePair `protobuf:"bytes,21,rep,name=list,proto3" json:"list,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*ScoreInfo) Descriptor added in v1.4.6

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

func (*ScoreInfo) GetCreated added in v1.4.6

func (m *ScoreInfo) GetCreated() int64

func (*ScoreInfo) GetCreator added in v1.4.6

func (m *ScoreInfo) GetCreator() string

func (*ScoreInfo) GetEntity added in v1.4.6

func (m *ScoreInfo) GetEntity() string

func (*ScoreInfo) GetList added in v1.4.6

func (m *ScoreInfo) GetList() []*ScorePair

func (*ScoreInfo) GetName added in v1.4.6

func (m *ScoreInfo) GetName() string

func (*ScoreInfo) GetOperator added in v1.4.6

func (m *ScoreInfo) GetOperator() string

func (*ScoreInfo) GetScene added in v1.4.6

func (m *ScoreInfo) GetScene() string

func (*ScoreInfo) GetTotal added in v1.4.6

func (m *ScoreInfo) GetTotal() uint64

func (*ScoreInfo) GetType added in v1.4.6

func (m *ScoreInfo) GetType() uint32

func (*ScoreInfo) GetUid added in v1.4.6

func (m *ScoreInfo) GetUid() string

func (*ScoreInfo) GetUpdated added in v1.4.6

func (m *ScoreInfo) GetUpdated() int64

func (*ScoreInfo) ProtoMessage added in v1.4.6

func (*ScoreInfo) ProtoMessage()

func (*ScoreInfo) Reset added in v1.4.6

func (m *ScoreInfo) Reset()

func (*ScoreInfo) String added in v1.4.6

func (m *ScoreInfo) String() string

func (*ScoreInfo) XXX_DiscardUnknown added in v1.4.6

func (m *ScoreInfo) XXX_DiscardUnknown()

func (*ScoreInfo) XXX_Marshal added in v1.4.6

func (m *ScoreInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScoreInfo) XXX_Merge added in v1.4.6

func (m *ScoreInfo) XXX_Merge(src proto.Message)

func (*ScoreInfo) XXX_Size added in v1.4.6

func (m *ScoreInfo) XXX_Size() int

func (*ScoreInfo) XXX_Unmarshal added in v1.4.6

func (m *ScoreInfo) XXX_Unmarshal(b []byte) error

type ScorePair added in v1.4.6

type ScorePair struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Count                uint32   `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ScorePair) Descriptor added in v1.4.6

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

func (*ScorePair) GetCount added in v1.4.6

func (m *ScorePair) GetCount() uint32

func (*ScorePair) GetType added in v1.4.6

func (m *ScorePair) GetType() uint32

func (*ScorePair) ProtoMessage added in v1.4.6

func (*ScorePair) ProtoMessage()

func (*ScorePair) Reset added in v1.4.6

func (m *ScorePair) Reset()

func (*ScorePair) String added in v1.4.6

func (m *ScorePair) String() string

func (*ScorePair) XXX_DiscardUnknown added in v1.4.6

func (m *ScorePair) XXX_DiscardUnknown()

func (*ScorePair) XXX_Marshal added in v1.4.6

func (m *ScorePair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ScorePair) XXX_Merge added in v1.4.6

func (m *ScorePair) XXX_Merge(src proto.Message)

func (*ScorePair) XXX_Size added in v1.4.6

func (m *ScorePair) XXX_Size() int

func (*ScorePair) XXX_Unmarshal added in v1.4.6

func (m *ScorePair) XXX_Unmarshal(b []byte) error

type ScoreService added in v1.4.6

type ScoreService interface {
	AddOne(ctx context.Context, in *ReqScoreAdd, opts ...client.CallOption) (*ReplyScoreInfo, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyScoreInfo, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateByFilter(ctx context.Context, in *ReqUpdateFilter, opts ...client.CallOption) (*ReplyInfo, error)
	GetByFilter(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyScoreList, error)
	GetStatistic(ctx context.Context, in *RequestFilter, opts ...client.CallOption) (*ReplyStatistic, error)
}

func NewScoreService added in v1.4.6

func NewScoreService(name string, c client.Client) ScoreService

type ShownInfo added in v1.4.7

type ShownInfo struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Cover                string   `protobuf:"bytes,2,opt,name=cover,proto3" json:"cover,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ShownInfo) Descriptor added in v1.4.7

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

func (*ShownInfo) GetCover added in v1.4.7

func (m *ShownInfo) GetCover() string

func (*ShownInfo) GetName added in v1.4.7

func (m *ShownInfo) GetName() string

func (*ShownInfo) ProtoMessage added in v1.4.7

func (*ShownInfo) ProtoMessage()

func (*ShownInfo) Reset added in v1.4.7

func (m *ShownInfo) Reset()

func (*ShownInfo) String added in v1.4.7

func (m *ShownInfo) String() string

func (*ShownInfo) XXX_DiscardUnknown added in v1.4.7

func (m *ShownInfo) XXX_DiscardUnknown()

func (*ShownInfo) XXX_Marshal added in v1.4.7

func (m *ShownInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ShownInfo) XXX_Merge added in v1.4.7

func (m *ShownInfo) XXX_Merge(src proto.Message)

func (*ShownInfo) XXX_Size added in v1.4.7

func (m *ShownInfo) XXX_Size() int

func (*ShownInfo) XXX_Unmarshal added in v1.4.7

func (m *ShownInfo) XXX_Unmarshal(b []byte) error

type UserInfo

type UserInfo struct {
	Uid                  string     `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64     `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Type                 UserType   `protobuf:"varint,3,opt,name=type,proto3,enum=omo.msp.user.UserType" json:"type,omitempty"`
	Created              int64      `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              int64      `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Name                 string     `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	Account              string     `protobuf:"bytes,7,opt,name=account,proto3" json:"account,omitempty"`
	Sex                  UserSex    `protobuf:"varint,8,opt,name=sex,proto3,enum=omo.msp.user.UserSex" json:"sex,omitempty"`
	Nick                 string     `protobuf:"bytes,9,opt,name=nick,proto3" json:"nick,omitempty"`
	Remark               string     `protobuf:"bytes,11,opt,name=remark,proto3" json:"remark,omitempty"`
	Creator              string     `protobuf:"bytes,12,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string     `protobuf:"bytes,13,opt,name=operator,proto3" json:"operator,omitempty"`
	Phone                string     `protobuf:"bytes,14,opt,name=phone,proto3" json:"phone,omitempty"`
	Entity               string     `protobuf:"bytes,15,opt,name=entity,proto3" json:"entity,omitempty"`
	Portrait             string     `protobuf:"bytes,16,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Status               uint32     `protobuf:"varint,17,opt,name=status,proto3" json:"status,omitempty"`
	Shown                *ShownInfo `protobuf:"bytes,18,opt,name=shown,proto3" json:"shown,omitempty"`
	Tags                 []string   `protobuf:"bytes,31,rep,name=tags,proto3" json:"tags,omitempty"`
	Follows              []string   `protobuf:"bytes,32,rep,name=follows,proto3" json:"follows,omitempty"`
	Relates              []string   `protobuf:"bytes,33,rep,name=relates,proto3" json:"relates,omitempty"`
	Sns                  []*SNSInfo `protobuf:"bytes,41,rep,name=sns,proto3" json:"sns,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*UserInfo) Descriptor

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

func (*UserInfo) GetAccount

func (m *UserInfo) GetAccount() string

func (*UserInfo) GetCreated

func (m *UserInfo) GetCreated() int64

func (*UserInfo) GetCreator added in v1.0.3

func (m *UserInfo) GetCreator() string

func (*UserInfo) GetEntity added in v1.1.4

func (m *UserInfo) GetEntity() string

func (*UserInfo) GetFollows added in v1.3.9

func (m *UserInfo) GetFollows() []string

func (*UserInfo) GetId

func (m *UserInfo) GetId() uint64

func (*UserInfo) GetName

func (m *UserInfo) GetName() string

func (*UserInfo) GetNick added in v1.1.0

func (m *UserInfo) GetNick() string

func (*UserInfo) GetOperator added in v1.0.3

func (m *UserInfo) GetOperator() string

func (*UserInfo) GetPhone

func (m *UserInfo) GetPhone() string

func (*UserInfo) GetPortrait added in v1.2.3

func (m *UserInfo) GetPortrait() string

func (*UserInfo) GetRelates added in v1.4.0

func (m *UserInfo) GetRelates() []string

func (*UserInfo) GetRemark

func (m *UserInfo) GetRemark() string

func (*UserInfo) GetSex

func (m *UserInfo) GetSex() UserSex

func (*UserInfo) GetShown added in v1.4.7

func (m *UserInfo) GetShown() *ShownInfo

func (*UserInfo) GetSns added in v1.1.6

func (m *UserInfo) GetSns() []*SNSInfo

func (*UserInfo) GetStatus added in v1.3.5

func (m *UserInfo) GetStatus() uint32

func (*UserInfo) GetTags added in v1.2.8

func (m *UserInfo) GetTags() []string

func (*UserInfo) GetType added in v1.0.5

func (m *UserInfo) GetType() UserType

func (*UserInfo) GetUid

func (m *UserInfo) GetUid() string

func (*UserInfo) GetUpdated

func (m *UserInfo) GetUpdated() int64

func (*UserInfo) ProtoMessage

func (*UserInfo) ProtoMessage()

func (*UserInfo) Reset

func (m *UserInfo) Reset()

func (*UserInfo) String

func (m *UserInfo) String() string

func (*UserInfo) XXX_DiscardUnknown added in v1.2.8

func (m *UserInfo) XXX_DiscardUnknown()

func (*UserInfo) XXX_Marshal added in v1.2.8

func (m *UserInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UserInfo) XXX_Merge added in v1.2.8

func (m *UserInfo) XXX_Merge(src proto.Message)

func (*UserInfo) XXX_Size added in v1.2.8

func (m *UserInfo) XXX_Size() int

func (*UserInfo) XXX_Unmarshal added in v1.2.8

func (m *UserInfo) XXX_Unmarshal(b []byte) error

type UserService

type UserService interface {
	AddOne(ctx context.Context, in *ReqUserAdd, opts ...client.CallOption) (*ReplyUserOne, error)
	GetOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyUserOne, error)
	GetByID(ctx context.Context, in *RequestIDInfo, opts ...client.CallOption) (*ReplyUserOne, error)
	GetByPhone(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyUserOne, error)
	GetByEntity(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyUserOne, error)
	GetBySNS(ctx context.Context, in *ReqUserBy, opts ...client.CallOption) (*ReplyUserOne, error)
	UpdateBase(ctx context.Context, in *ReqUserUpdate, opts ...client.CallOption) (*ReplyUserOne, error)
	UpdateEntity(ctx context.Context, in *ReqUserEntity, opts ...client.CallOption) (*ReplyUserOne, error)
	RemoveOne(ctx context.Context, in *RequestInfo, opts ...client.CallOption) (*ReplyInfo, error)
	GetList(ctx context.Context, in *ReqUserList, opts ...client.CallOption) (*ReplyUserList, error)
	GetByPage(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyUserList, error)
	GetByKey(ctx context.Context, in *ReqUserSearch, opts ...client.CallOption) (*ReplyUserList, error)
	UpdateSNS(ctx context.Context, in *ReqUserSNS, opts ...client.CallOption) (*ReplyUserOne, error)
	UpdateTags(ctx context.Context, in *ReqUserTags, opts ...client.CallOption) (*ReplyUserOne, error)
	UpdatePhone(ctx context.Context, in *ReqUserPhone, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateFollows(ctx context.Context, in *RequestList, opts ...client.CallOption) (*ReplyInfo, error)
	UpdateByFilter(ctx context.Context, in *ReqUpdateFilter, opts ...client.CallOption) (*ReplyInfo, error)
	GetStatistic(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyStatistic, error)
}

func NewUserService

func NewUserService(name string, c client.Client) UserService

type UserSex

type UserSex int32
const (
	UserSex_Girl UserSex = 0
	UserSex_Boy  UserSex = 1
)

func (UserSex) EnumDescriptor

func (UserSex) EnumDescriptor() ([]byte, []int)

func (UserSex) String

func (x UserSex) String() string

type UserType added in v1.0.5

type UserType int32
const (
	UserType_SuperRoot        UserType = 0
	UserType_EnterpriseAdmin  UserType = 1
	UserType_EnterpriseCommon UserType = 2
	UserType_Common           UserType = 3
	UserType_Visitor          UserType = 4
)

func (UserType) EnumDescriptor added in v1.0.5

func (UserType) EnumDescriptor() ([]byte, []int)

func (UserType) String added in v1.0.5

func (x UserType) String() string

type WechatInfo added in v1.1.6

type WechatInfo struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Id                   uint64   `protobuf:"varint,2,opt,name=id,proto3" json:"id,omitempty"`
	Created              uint64   `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	Updated              uint64   `protobuf:"varint,4,opt,name=updated,proto3" json:"updated,omitempty"`
	Creator              string   `protobuf:"bytes,5,opt,name=creator,proto3" json:"creator,omitempty"`
	Operator             string   `protobuf:"bytes,6,opt,name=operator,proto3" json:"operator,omitempty"`
	Open                 string   `protobuf:"bytes,7,opt,name=open,proto3" json:"open,omitempty"`
	Union                string   `protobuf:"bytes,8,opt,name=union,proto3" json:"union,omitempty"`
	Portrait             string   `protobuf:"bytes,9,opt,name=portrait,proto3" json:"portrait,omitempty"`
	Name                 string   `protobuf:"bytes,10,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WechatInfo) Descriptor added in v1.1.6

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

func (*WechatInfo) GetCreated added in v1.1.6

func (m *WechatInfo) GetCreated() uint64

func (*WechatInfo) GetCreator added in v1.1.6

func (m *WechatInfo) GetCreator() string

func (*WechatInfo) GetId added in v1.1.6

func (m *WechatInfo) GetId() uint64

func (*WechatInfo) GetName added in v1.2.0

func (m *WechatInfo) GetName() string

func (*WechatInfo) GetOpen added in v1.1.6

func (m *WechatInfo) GetOpen() string

func (*WechatInfo) GetOperator added in v1.1.6

func (m *WechatInfo) GetOperator() string

func (*WechatInfo) GetPortrait added in v1.1.6

func (m *WechatInfo) GetPortrait() string

func (*WechatInfo) GetUid added in v1.1.6

func (m *WechatInfo) GetUid() string

func (*WechatInfo) GetUnion added in v1.1.6

func (m *WechatInfo) GetUnion() string

func (*WechatInfo) GetUpdated added in v1.1.6

func (m *WechatInfo) GetUpdated() uint64

func (*WechatInfo) ProtoMessage added in v1.1.6

func (*WechatInfo) ProtoMessage()

func (*WechatInfo) Reset added in v1.1.6

func (m *WechatInfo) Reset()

func (*WechatInfo) String added in v1.1.6

func (m *WechatInfo) String() string

func (*WechatInfo) XXX_DiscardUnknown added in v1.2.8

func (m *WechatInfo) XXX_DiscardUnknown()

func (*WechatInfo) XXX_Marshal added in v1.2.8

func (m *WechatInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WechatInfo) XXX_Merge added in v1.2.8

func (m *WechatInfo) XXX_Merge(src proto.Message)

func (*WechatInfo) XXX_Size added in v1.2.8

func (m *WechatInfo) XXX_Size() int

func (*WechatInfo) XXX_Unmarshal added in v1.2.8

func (m *WechatInfo) XXX_Unmarshal(b []byte) error

type WechatService added in v1.1.6

type WechatService interface {
	AddOne(ctx context.Context, in *ReqWechatAdd, opts ...client.CallOption) (*ReplyWechatInfo, error)
	GetOne(ctx context.Context, in *ReqWechatBy, opts ...client.CallOption) (*ReplyWechatInfo, error)
	UpdateBase(ctx context.Context, in *ReqWechatUpdate, opts ...client.CallOption) (*ReplyWechatInfo, error)
	GetStatistic(ctx context.Context, in *RequestPage, opts ...client.CallOption) (*ReplyStatistic, error)
}

func NewWechatService added in v1.1.6

func NewWechatService(name string, c client.Client) WechatService

type WechatServiceHandler added in v1.1.6

type WechatType added in v1.2.1

type WechatType int32
const (
	WechatType_Default WechatType = 0
	WechatType_OpenID  WechatType = 1
	WechatType_Union   WechatType = 2
)

func (WechatType) EnumDescriptor added in v1.2.1

func (WechatType) EnumDescriptor() ([]byte, []int)

func (WechatType) String added in v1.2.1

func (x WechatType) String() string

Jump to

Keyboard shortcuts

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