1602 lines
54 KiB
Go
1602 lines
54 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
// versions:
|
||
// protoc-gen-go v1.28.0
|
||
// protoc v3.20.0
|
||
// source: sociaty/sociaty_db.proto
|
||
|
||
package pb
|
||
|
||
import (
|
||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||
reflect "reflect"
|
||
sync "sync"
|
||
)
|
||
|
||
const (
|
||
// Verify that this generated code is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||
)
|
||
|
||
//职位
|
||
type SociatyJob int32
|
||
|
||
const (
|
||
SociatyJob_NOJOB SociatyJob = 0 //无职位/权限
|
||
SociatyJob_MEMBER SociatyJob = 1 //成员
|
||
SociatyJob_ADMIN SociatyJob = 2 //管理员
|
||
SociatyJob_VICEPRESIDENT SociatyJob = 3 //副会长
|
||
SociatyJob_PRESIDENT SociatyJob = 4 //会长
|
||
)
|
||
|
||
// Enum value maps for SociatyJob.
|
||
var (
|
||
SociatyJob_name = map[int32]string{
|
||
0: "NOJOB",
|
||
1: "MEMBER",
|
||
2: "ADMIN",
|
||
3: "VICEPRESIDENT",
|
||
4: "PRESIDENT",
|
||
}
|
||
SociatyJob_value = map[string]int32{
|
||
"NOJOB": 0,
|
||
"MEMBER": 1,
|
||
"ADMIN": 2,
|
||
"VICEPRESIDENT": 3,
|
||
"PRESIDENT": 4,
|
||
}
|
||
)
|
||
|
||
func (x SociatyJob) Enum() *SociatyJob {
|
||
p := new(SociatyJob)
|
||
*p = x
|
||
return p
|
||
}
|
||
|
||
func (x SociatyJob) String() string {
|
||
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||
}
|
||
|
||
func (SociatyJob) Descriptor() protoreflect.EnumDescriptor {
|
||
return file_sociaty_sociaty_db_proto_enumTypes[0].Descriptor()
|
||
}
|
||
|
||
func (SociatyJob) Type() protoreflect.EnumType {
|
||
return &file_sociaty_sociaty_db_proto_enumTypes[0]
|
||
}
|
||
|
||
func (x SociatyJob) Number() protoreflect.EnumNumber {
|
||
return protoreflect.EnumNumber(x)
|
||
}
|
||
|
||
// Deprecated: Use SociatyJob.Descriptor instead.
|
||
func (SociatyJob) EnumDescriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
type DBSociaty struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" bson:"_id"` //ID
|
||
Creater string `protobuf:"bytes,2,opt,name=creater,proto3" json:"creater" bson:"creater"` //创建人
|
||
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name" bson:"name"` //公会名称
|
||
Icon string `protobuf:"bytes,4,opt,name=icon,proto3" json:"icon" bson:"icon"` //公会图标
|
||
Notice string `protobuf:"bytes,5,opt,name=notice,proto3" json:"notice" bson:"notice"` //公告
|
||
Exp int32 `protobuf:"varint,6,opt,name=exp,proto3" json:"exp" bson:"exp"` //经验
|
||
Lv int32 `protobuf:"varint,7,opt,name=lv,proto3" json:"lv" bson:"lv"` //等级
|
||
IsApplyCheck bool `protobuf:"varint,8,opt,name=isApplyCheck,proto3" json:"isApplyCheck" bson:"isApplyCheck"` //是否必须审批
|
||
ApplyLv int32 `protobuf:"varint,9,opt,name=applyLv,proto3" json:"applyLv" bson:"applyLv"` // 等级限制
|
||
Ctime int64 `protobuf:"varint,10,opt,name=ctime,proto3" json:"ctime" bson:"ctime"` //创建时间
|
||
ApplyRecord []*ApplyRecord `protobuf:"bytes,11,rep,name=applyRecord,proto3" json:"applyRecord" bson:"applyRecord"` //入会申请
|
||
Members []*SociatyMember `protobuf:"bytes,12,rep,name=members,proto3" json:"members"` //@go_tags(`bson:"members"`) 公会成员
|
||
Activity int32 `protobuf:"varint,13,opt,name=activity,proto3" json:"activity" bson:"activity"` //活跃度
|
||
AccuseTime int64 `protobuf:"varint,14,opt,name=accuseTime,proto3" json:"accuseTime" bson:"accuseTime"` //会长弹劾时间
|
||
LastSignCount int32 `protobuf:"varint,15,opt,name=lastSignCount,proto3" json:"lastSignCount" bson:"lastSignCount"` //昨日签到的人数
|
||
SignIds []string `protobuf:"bytes,16,rep,name=signIds,proto3" json:"signIds" bson:"signIds"` // 今日签到的玩家IDs
|
||
DismissTime int64 `protobuf:"varint,17,opt,name=dismissTime,proto3" json:"dismissTime" bson:"dismissTime"` //公会解散时间
|
||
DismissCD int64 `protobuf:"varint,18,opt,name=dismissCD,proto3" json:"dismissCD" bson:"dismissCD"` //解散CD
|
||
}
|
||
|
||
func (x *DBSociaty) Reset() {
|
||
*x = DBSociaty{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[0]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociaty) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociaty) ProtoMessage() {}
|
||
|
||
func (x *DBSociaty) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[0]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociaty.ProtoReflect.Descriptor instead.
|
||
func (*DBSociaty) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{0}
|
||
}
|
||
|
||
func (x *DBSociaty) GetId() string {
|
||
if x != nil {
|
||
return x.Id
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociaty) GetCreater() string {
|
||
if x != nil {
|
||
return x.Creater
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociaty) GetName() string {
|
||
if x != nil {
|
||
return x.Name
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociaty) GetIcon() string {
|
||
if x != nil {
|
||
return x.Icon
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociaty) GetNotice() string {
|
||
if x != nil {
|
||
return x.Notice
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociaty) GetExp() int32 {
|
||
if x != nil {
|
||
return x.Exp
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetLv() int32 {
|
||
if x != nil {
|
||
return x.Lv
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetIsApplyCheck() bool {
|
||
if x != nil {
|
||
return x.IsApplyCheck
|
||
}
|
||
return false
|
||
}
|
||
|
||
func (x *DBSociaty) GetApplyLv() int32 {
|
||
if x != nil {
|
||
return x.ApplyLv
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetCtime() int64 {
|
||
if x != nil {
|
||
return x.Ctime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetApplyRecord() []*ApplyRecord {
|
||
if x != nil {
|
||
return x.ApplyRecord
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociaty) GetMembers() []*SociatyMember {
|
||
if x != nil {
|
||
return x.Members
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociaty) GetActivity() int32 {
|
||
if x != nil {
|
||
return x.Activity
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetAccuseTime() int64 {
|
||
if x != nil {
|
||
return x.AccuseTime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetLastSignCount() int32 {
|
||
if x != nil {
|
||
return x.LastSignCount
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetSignIds() []string {
|
||
if x != nil {
|
||
return x.SignIds
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociaty) GetDismissTime() int64 {
|
||
if x != nil {
|
||
return x.DismissTime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociaty) GetDismissCD() int64 {
|
||
if x != nil {
|
||
return x.DismissCD
|
||
}
|
||
return 0
|
||
}
|
||
|
||
//申请记录
|
||
type ApplyRecord struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid" bson:"uid"` // 申请的玩家ID
|
||
Ctime int64 `protobuf:"varint,2,opt,name=ctime,proto3" json:"ctime" bson:"ctime"` // 申请时间
|
||
}
|
||
|
||
func (x *ApplyRecord) Reset() {
|
||
*x = ApplyRecord{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[1]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ApplyRecord) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ApplyRecord) ProtoMessage() {}
|
||
|
||
func (x *ApplyRecord) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[1]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ApplyRecord.ProtoReflect.Descriptor instead.
|
||
func (*ApplyRecord) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{1}
|
||
}
|
||
|
||
func (x *ApplyRecord) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *ApplyRecord) GetCtime() int64 {
|
||
if x != nil {
|
||
return x.Ctime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 公会成员
|
||
type SociatyMember struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid" bson:"uid"` //成员ID
|
||
Job SociatyJob `protobuf:"varint,2,opt,name=job,proto3,enum=SociatyJob" json:"job" bson:"job"` //职位
|
||
Ctime int64 `protobuf:"varint,3,opt,name=ctime,proto3" json:"ctime" bson:"ctime"` //入会时间
|
||
Contribution int32 `protobuf:"varint,4,opt,name=contribution,proto3" json:"contribution" bson:"contribution"` //贡献值
|
||
Teams map[int32]*ChallengeTeam `protobuf:"bytes,5,rep,name=teams,proto3" json:"teams" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" bson:"teams"` // 公会BOSS 队伍
|
||
}
|
||
|
||
func (x *SociatyMember) Reset() {
|
||
*x = SociatyMember{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[2]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *SociatyMember) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*SociatyMember) ProtoMessage() {}
|
||
|
||
func (x *SociatyMember) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[2]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use SociatyMember.ProtoReflect.Descriptor instead.
|
||
func (*SociatyMember) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{2}
|
||
}
|
||
|
||
func (x *SociatyMember) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *SociatyMember) GetJob() SociatyJob {
|
||
if x != nil {
|
||
return x.Job
|
||
}
|
||
return SociatyJob_NOJOB
|
||
}
|
||
|
||
func (x *SociatyMember) GetCtime() int64 {
|
||
if x != nil {
|
||
return x.Ctime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyMember) GetContribution() int32 {
|
||
if x != nil {
|
||
return x.Contribution
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyMember) GetTeams() map[int32]*ChallengeTeam {
|
||
if x != nil {
|
||
return x.Teams
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 日志
|
||
type SociatyLog struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content" bson:"content"` // 日志内容
|
||
Ctime int64 `protobuf:"varint,2,opt,name=ctime,proto3" json:"ctime" bson:"ctime"` //创建时间
|
||
}
|
||
|
||
func (x *SociatyLog) Reset() {
|
||
*x = SociatyLog{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[3]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *SociatyLog) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*SociatyLog) ProtoMessage() {}
|
||
|
||
func (x *SociatyLog) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[3]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use SociatyLog.ProtoReflect.Descriptor instead.
|
||
func (*SociatyLog) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{3}
|
||
}
|
||
|
||
func (x *SociatyLog) GetContent() string {
|
||
if x != nil {
|
||
return x.Content
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *SociatyLog) GetCtime() int64 {
|
||
if x != nil {
|
||
return x.Ctime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type DBSociatyLog struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
SociatyId string `protobuf:"bytes,1,opt,name=sociatyId,proto3" json:"sociatyId"` //@go_tags(`bson:"sociatyId") 公会ID
|
||
List []*SociatyLog `protobuf:"bytes,2,rep,name=list,proto3" json:"list" bson:"list"` //日志
|
||
}
|
||
|
||
func (x *DBSociatyLog) Reset() {
|
||
*x = DBSociatyLog{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[4]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociatyLog) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociatyLog) ProtoMessage() {}
|
||
|
||
func (x *DBSociatyLog) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[4]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociatyLog.ProtoReflect.Descriptor instead.
|
||
func (*DBSociatyLog) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{4}
|
||
}
|
||
|
||
func (x *DBSociatyLog) GetSociatyId() string {
|
||
if x != nil {
|
||
return x.SociatyId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyLog) GetList() []*SociatyLog {
|
||
if x != nil {
|
||
return x.List
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 公会成员任务
|
||
type DBSociatyTask struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
SociatyId string `protobuf:"bytes,1,opt,name=sociatyId,proto3" json:"sociatyId"` //@go_tags(`bson:"sociatyId") 公会ID
|
||
Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid" bson:"uid"` //用户ID
|
||
TaskList []*SociatyTask `protobuf:"bytes,3,rep,name=taskList,proto3" json:"taskList" bson:"taskList"` //任务列表
|
||
ActivityList []*SociatyActivity `protobuf:"bytes,4,rep,name=activityList,proto3" json:"activityList" bson:"activityList"` //活跃度列表
|
||
LastUpdateTime int64 `protobuf:"varint,5,opt,name=lastUpdateTime,proto3" json:"lastUpdateTime" bson:"lastUpdateTime"` //上次初始时间
|
||
}
|
||
|
||
func (x *DBSociatyTask) Reset() {
|
||
*x = DBSociatyTask{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[5]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociatyTask) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociatyTask) ProtoMessage() {}
|
||
|
||
func (x *DBSociatyTask) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[5]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociatyTask.ProtoReflect.Descriptor instead.
|
||
func (*DBSociatyTask) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{5}
|
||
}
|
||
|
||
func (x *DBSociatyTask) GetSociatyId() string {
|
||
if x != nil {
|
||
return x.SociatyId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyTask) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyTask) GetTaskList() []*SociatyTask {
|
||
if x != nil {
|
||
return x.TaskList
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociatyTask) GetActivityList() []*SociatyActivity {
|
||
if x != nil {
|
||
return x.ActivityList
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociatyTask) GetLastUpdateTime() int64 {
|
||
if x != nil {
|
||
return x.LastUpdateTime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 任务
|
||
type SociatyTask struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
TaskId int32 `protobuf:"varint,1,opt,name=taskId,proto3" json:"taskId" bson:"taskId"` //任务ID
|
||
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status" bson:"status"` //领取状态:0未完成 1已完成
|
||
Received int32 `protobuf:"varint,3,opt,name=received,proto3" json:"received" bson:"received"` //领取状态: 0未领取 1已领取
|
||
Cond *ConIProgress `protobuf:"bytes,4,opt,name=cond,proto3" json:"cond" bson:"cond"` //进度
|
||
}
|
||
|
||
func (x *SociatyTask) Reset() {
|
||
*x = SociatyTask{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[6]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *SociatyTask) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*SociatyTask) ProtoMessage() {}
|
||
|
||
func (x *SociatyTask) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[6]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use SociatyTask.ProtoReflect.Descriptor instead.
|
||
func (*SociatyTask) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{6}
|
||
}
|
||
|
||
func (x *SociatyTask) GetTaskId() int32 {
|
||
if x != nil {
|
||
return x.TaskId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyTask) GetStatus() int32 {
|
||
if x != nil {
|
||
return x.Status
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyTask) GetReceived() int32 {
|
||
if x != nil {
|
||
return x.Received
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyTask) GetCond() *ConIProgress {
|
||
if x != nil {
|
||
return x.Cond
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 活跃度
|
||
type SociatyActivity struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id" bson:"id"` //活跃度ID
|
||
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status" bson:"status"` //领取状态:0未领取 1已领取
|
||
}
|
||
|
||
func (x *SociatyActivity) Reset() {
|
||
*x = SociatyActivity{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[7]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *SociatyActivity) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*SociatyActivity) ProtoMessage() {}
|
||
|
||
func (x *SociatyActivity) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[7]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use SociatyActivity.ProtoReflect.Descriptor instead.
|
||
func (*SociatyActivity) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{7}
|
||
}
|
||
|
||
func (x *SociatyActivity) GetId() int32 {
|
||
if x != nil {
|
||
return x.Id
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *SociatyActivity) GetStatus() int32 {
|
||
if x != nil {
|
||
return x.Status
|
||
}
|
||
return 0
|
||
}
|
||
|
||
//任务活跃度排行榜
|
||
type DBSociatyRank struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
SociatyId string `protobuf:"bytes,1,opt,name=sociatyId,proto3" json:"sociatyId" bson:"sociatyId"`
|
||
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name" bson:"name"` //公会名称
|
||
Lv int32 `protobuf:"varint,3,opt,name=lv,proto3" json:"lv" bson:"lv"` //等级
|
||
Activity int32 `protobuf:"varint,4,opt,name=activity,proto3" json:"activity" bson:"activity"` //活跃度
|
||
Ctime int64 `protobuf:"varint,5,opt,name=ctime,proto3" json:"ctime" bson:"ctime"` //公会创建时间
|
||
}
|
||
|
||
func (x *DBSociatyRank) Reset() {
|
||
*x = DBSociatyRank{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[8]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociatyRank) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociatyRank) ProtoMessage() {}
|
||
|
||
func (x *DBSociatyRank) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[8]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociatyRank.ProtoReflect.Descriptor instead.
|
||
func (*DBSociatyRank) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{8}
|
||
}
|
||
|
||
func (x *DBSociatyRank) GetSociatyId() string {
|
||
if x != nil {
|
||
return x.SociatyId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyRank) GetName() string {
|
||
if x != nil {
|
||
return x.Name
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyRank) GetLv() int32 {
|
||
if x != nil {
|
||
return x.Lv
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyRank) GetActivity() int32 {
|
||
if x != nil {
|
||
return x.Activity
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyRank) GetCtime() int64 {
|
||
if x != nil {
|
||
return x.Ctime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
// 阵容明细
|
||
type ChallengeTeamInfo struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
HeroId string `protobuf:"bytes,1,opt,name=heroId,proto3" json:"heroId" bson:"heroId"` //英雄ID
|
||
}
|
||
|
||
func (x *ChallengeTeamInfo) Reset() {
|
||
*x = ChallengeTeamInfo{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[9]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ChallengeTeamInfo) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ChallengeTeamInfo) ProtoMessage() {}
|
||
|
||
func (x *ChallengeTeamInfo) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[9]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ChallengeTeamInfo.ProtoReflect.Descriptor instead.
|
||
func (*ChallengeTeamInfo) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{9}
|
||
}
|
||
|
||
func (x *ChallengeTeamInfo) GetHeroId() string {
|
||
if x != nil {
|
||
return x.HeroId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
// 阵容
|
||
type ChallengeTeam struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Formation *BattleFormation `protobuf:"bytes,1,opt,name=formation,proto3" json:"formation" bson:"teamInfo"` //阵容
|
||
}
|
||
|
||
func (x *ChallengeTeam) Reset() {
|
||
*x = ChallengeTeam{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[10]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ChallengeTeam) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ChallengeTeam) ProtoMessage() {}
|
||
|
||
func (x *ChallengeTeam) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[10]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ChallengeTeam.ProtoReflect.Descriptor instead.
|
||
func (*ChallengeTeam) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{10}
|
||
}
|
||
|
||
func (x *ChallengeTeam) GetFormation() *BattleFormation {
|
||
if x != nil {
|
||
return x.Formation
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 赛季信息
|
||
type DBSociatyBossSports struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
EndTime int64 `protobuf:"varint,1,opt,name=endTime,proto3" json:"endTime" bson:"endTime"` //公会BOSS赛季结束时间
|
||
SettlementTime int64 `protobuf:"varint,2,opt,name=settlementTime,proto3" json:"settlementTime" bson:"settlementTime"` //赛季结算时间
|
||
Uids []string `protobuf:"bytes,3,rep,name=uids,proto3" json:"uids" bson:"uids"` //参赛玩家
|
||
}
|
||
|
||
func (x *DBSociatyBossSports) Reset() {
|
||
*x = DBSociatyBossSports{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[11]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociatyBossSports) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociatyBossSports) ProtoMessage() {}
|
||
|
||
func (x *DBSociatyBossSports) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[11]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociatyBossSports.ProtoReflect.Descriptor instead.
|
||
func (*DBSociatyBossSports) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{11}
|
||
}
|
||
|
||
func (x *DBSociatyBossSports) GetEndTime() int64 {
|
||
if x != nil {
|
||
return x.EndTime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyBossSports) GetSettlementTime() int64 {
|
||
if x != nil {
|
||
return x.SettlementTime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyBossSports) GetUids() []string {
|
||
if x != nil {
|
||
return x.Uids
|
||
}
|
||
return nil
|
||
}
|
||
|
||
// 玩家每次挑战的记录
|
||
type ChallengeRecord struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Teams map[int32]*ChallengeTeam `protobuf:"bytes,1,rep,name=teams,proto3" json:"teams" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3" bson:"teams"` //挑战队伍
|
||
Integral int64 `protobuf:"varint,2,opt,name=integral,proto3" json:"integral" bson:"integral"` //公会BOSS挑战积分
|
||
Duration int32 `protobuf:"varint,3,opt,name=duration,proto3" json:"duration" bson:"duration"` //战斗耗时
|
||
Rtime int64 `protobuf:"varint,4,opt,name=rtime,proto3" json:"rtime" bson:"rtime"` //记录时间
|
||
}
|
||
|
||
func (x *ChallengeRecord) Reset() {
|
||
*x = ChallengeRecord{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[12]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ChallengeRecord) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ChallengeRecord) ProtoMessage() {}
|
||
|
||
func (x *ChallengeRecord) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[12]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ChallengeRecord.ProtoReflect.Descriptor instead.
|
||
func (*ChallengeRecord) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{12}
|
||
}
|
||
|
||
func (x *ChallengeRecord) GetTeams() map[int32]*ChallengeTeam {
|
||
if x != nil {
|
||
return x.Teams
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *ChallengeRecord) GetIntegral() int64 {
|
||
if x != nil {
|
||
return x.Integral
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *ChallengeRecord) GetDuration() int32 {
|
||
if x != nil {
|
||
return x.Duration
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *ChallengeRecord) GetRtime() int64 {
|
||
if x != nil {
|
||
return x.Rtime
|
||
}
|
||
return 0
|
||
}
|
||
|
||
type ChallengeTask struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
TaskId int32 `protobuf:"varint,1,opt,name=taskId,proto3" json:"taskId" bson:"taskId"` //任务ID
|
||
Status int32 `protobuf:"varint,2,opt,name=status,proto3" json:"status" bson:"status"` //任务状态 0未完成 1可领取 2已领取
|
||
}
|
||
|
||
func (x *ChallengeTask) Reset() {
|
||
*x = ChallengeTask{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[13]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *ChallengeTask) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*ChallengeTask) ProtoMessage() {}
|
||
|
||
func (x *ChallengeTask) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[13]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use ChallengeTask.ProtoReflect.Descriptor instead.
|
||
func (*ChallengeTask) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{13}
|
||
}
|
||
|
||
func (x *ChallengeTask) GetTaskId() int32 {
|
||
if x != nil {
|
||
return x.TaskId
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *ChallengeTask) GetStatus() int32 {
|
||
if x != nil {
|
||
return x.Status
|
||
}
|
||
return 0
|
||
}
|
||
|
||
//玩家赛季记录
|
||
type DBSociatyBossRecord struct {
|
||
state protoimpl.MessageState
|
||
sizeCache protoimpl.SizeCache
|
||
unknownFields protoimpl.UnknownFields
|
||
|
||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid" bson:"uid"` //玩家ID
|
||
SociatyId string `protobuf:"bytes,2,opt,name=sociatyId,proto3" json:"sociatyId" bson:"sociatyId"` //公会ID
|
||
Record []*ChallengeRecord `protobuf:"bytes,4,rep,name=record,proto3" json:"record" bson:"record"` //赛季挑战记录
|
||
Total int64 `protobuf:"varint,5,opt,name=total,proto3" json:"total" bson:"total"` //赛季总积分(前三积分和)
|
||
Integrals []int64 `protobuf:"varint,6,rep,packed,name=integrals,proto3" json:"integrals" bson:"integrals"` //赛季中最高积分
|
||
Status int32 `protobuf:"varint,7,opt,name=status,proto3" json:"status"` //@go_tags(`bson:"status"`)0当前赛季记录 1归档赛季记录
|
||
Tasks []*ChallengeTask `protobuf:"bytes,8,rep,name=tasks,proto3" json:"tasks" bson:"tasks"` //积分任务
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) Reset() {
|
||
*x = DBSociatyBossRecord{}
|
||
if protoimpl.UnsafeEnabled {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[14]
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) String() string {
|
||
return protoimpl.X.MessageStringOf(x)
|
||
}
|
||
|
||
func (*DBSociatyBossRecord) ProtoMessage() {}
|
||
|
||
func (x *DBSociatyBossRecord) ProtoReflect() protoreflect.Message {
|
||
mi := &file_sociaty_sociaty_db_proto_msgTypes[14]
|
||
if protoimpl.UnsafeEnabled && x != nil {
|
||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||
if ms.LoadMessageInfo() == nil {
|
||
ms.StoreMessageInfo(mi)
|
||
}
|
||
return ms
|
||
}
|
||
return mi.MessageOf(x)
|
||
}
|
||
|
||
// Deprecated: Use DBSociatyBossRecord.ProtoReflect.Descriptor instead.
|
||
func (*DBSociatyBossRecord) Descriptor() ([]byte, []int) {
|
||
return file_sociaty_sociaty_db_proto_rawDescGZIP(), []int{14}
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetUid() string {
|
||
if x != nil {
|
||
return x.Uid
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetSociatyId() string {
|
||
if x != nil {
|
||
return x.SociatyId
|
||
}
|
||
return ""
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetRecord() []*ChallengeRecord {
|
||
if x != nil {
|
||
return x.Record
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetTotal() int64 {
|
||
if x != nil {
|
||
return x.Total
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetIntegrals() []int64 {
|
||
if x != nil {
|
||
return x.Integrals
|
||
}
|
||
return nil
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetStatus() int32 {
|
||
if x != nil {
|
||
return x.Status
|
||
}
|
||
return 0
|
||
}
|
||
|
||
func (x *DBSociatyBossRecord) GetTasks() []*ChallengeTask {
|
||
if x != nil {
|
||
return x.Tasks
|
||
}
|
||
return nil
|
||
}
|
||
|
||
var File_sociaty_sociaty_db_proto protoreflect.FileDescriptor
|
||
|
||
var file_sociaty_sociaty_db_proto_rawDesc = []byte{
|
||
0x0a, 0x18, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x2f, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74,
|
||
0x79, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x62, 0x61, 0x74, 0x74,
|
||
0x6c, 0x65, 0x2f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72,
|
||
0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x62, 0x75, 0x72, 0x69, 0x65, 0x64, 0x2f, 0x62, 0x75, 0x72, 0x69,
|
||
0x65, 0x64, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x81, 0x04, 0x0a, 0x09,
|
||
0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
|
||
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65,
|
||
0x61, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61,
|
||
0x74, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||
0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18,
|
||
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x6e,
|
||
0x6f, 0x74, 0x69, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x74,
|
||
0x69, 0x63, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x78, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05,
|
||
0x52, 0x03, 0x65, 0x78, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x07, 0x20, 0x01, 0x28,
|
||
0x05, 0x52, 0x02, 0x6c, 0x76, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x79,
|
||
0x43, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x41,
|
||
0x70, 0x70, 0x6c, 0x79, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70,
|
||
0x6c, 0x79, 0x4c, 0x76, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x61, 0x70, 0x70, 0x6c,
|
||
0x79, 0x4c, 0x76, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01,
|
||
0x28, 0x03, 0x52, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x2e, 0x0a, 0x0b, 0x61, 0x70, 0x70,
|
||
0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c,
|
||
0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x0b, 0x61, 0x70,
|
||
0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x6d, 0x65, 0x6d,
|
||
0x62, 0x65, 0x72, 0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x53, 0x6f, 0x63,
|
||
0x69, 0x61, 0x74, 0x79, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62,
|
||
0x65, 0x72, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18,
|
||
0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12,
|
||
0x1e, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x75, 0x73, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20,
|
||
0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x75, 0x73, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
|
||
0x24, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74,
|
||
0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x53, 0x69, 0x67, 0x6e,
|
||
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x69, 0x67, 0x6e, 0x49, 0x64, 0x73,
|
||
0x18, 0x10, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x73, 0x69, 0x67, 0x6e, 0x49, 0x64, 0x73, 0x12,
|
||
0x20, 0x0a, 0x0b, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x11,
|
||
0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x54, 0x69, 0x6d,
|
||
0x65, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x43, 0x44, 0x18, 0x12,
|
||
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x69, 0x73, 0x6d, 0x69, 0x73, 0x73, 0x43, 0x44, 0x22,
|
||
0x35, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x10,
|
||
0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64,
|
||
0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
|
||
0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x22, 0xf5, 0x01, 0x0a, 0x0d, 0x53, 0x6f, 0x63, 0x69, 0x61,
|
||
0x74, 0x79, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18,
|
||
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x03, 0x6a, 0x6f,
|
||
0x62, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0b, 0x2e, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74,
|
||
0x79, 0x4a, 0x6f, 0x62, 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69,
|
||
0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x12,
|
||
0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18,
|
||
0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
|
||
0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x05, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03,
|
||
0x28, 0x0b, 0x32, 0x19, 0x2e, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x4d, 0x65, 0x6d, 0x62,
|
||
0x65, 0x72, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x74,
|
||
0x65, 0x61, 0x6d, 0x73, 0x1a, 0x48, 0x0a, 0x0a, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74,
|
||
0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||
0x03, 0x6b, 0x65, 0x79, 0x12, 0x24, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
|
||
0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x54,
|
||
0x65, 0x61, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x3c,
|
||
0x0a, 0x0a, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x4c, 0x6f, 0x67, 0x12, 0x18, 0x0a, 0x07,
|
||
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
|
||
0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18,
|
||
0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x22, 0x4d, 0x0a, 0x0c,
|
||
0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x4c, 0x6f, 0x67, 0x12, 0x1c, 0x0a, 0x09,
|
||
0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||
0x09, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x04, 0x6c, 0x69,
|
||
0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x53, 0x6f, 0x63, 0x69, 0x61,
|
||
0x74, 0x79, 0x4c, 0x6f, 0x67, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x0d,
|
||
0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x1c, 0x0a,
|
||
0x09, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||
0x52, 0x09, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75,
|
||
0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x28, 0x0a,
|
||
0x08, 0x74, 0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||
0x0c, 0x2e, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x08, 0x74,
|
||
0x61, 0x73, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x34, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76,
|
||
0x69, 0x74, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e,
|
||
0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52,
|
||
0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a,
|
||
0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18,
|
||
0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||
0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x7c, 0x0a, 0x0b, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79,
|
||
0x54, 0x61, 0x73, 0x6b, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x18, 0x01,
|
||
0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
|
||
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74,
|
||
0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64,
|
||
0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64,
|
||
0x12, 0x21, 0x0a, 0x04, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d,
|
||
0x2e, 0x43, 0x6f, 0x6e, 0x49, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x65, 0x73, 0x73, 0x52, 0x04, 0x63,
|
||
0x6f, 0x6e, 0x64, 0x22, 0x39, 0x0a, 0x0f, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x41, 0x63,
|
||
0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
||
0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
|
||
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x83,
|
||
0x01, 0x0a, 0x0d, 0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x52, 0x61, 0x6e, 0x6b,
|
||
0x12, 0x1c, 0x0a, 0x09, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20,
|
||
0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x12, 0x12,
|
||
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
|
||
0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x6c, 0x76, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02,
|
||
0x6c, 0x76, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x04,
|
||
0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x14,
|
||
0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63,
|
||
0x74, 0x69, 0x6d, 0x65, 0x22, 0x2b, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67,
|
||
0x65, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72,
|
||
0x6f, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49,
|
||
0x64, 0x22, 0x3f, 0x0a, 0x0d, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x54, 0x65,
|
||
0x61, 0x6d, 0x12, 0x2e, 0x0a, 0x09, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
|
||
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x46, 0x6f,
|
||
0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
|
||
0x6f, 0x6e, 0x22, 0x6b, 0x0a, 0x13, 0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x42,
|
||
0x6f, 0x73, 0x73, 0x53, 0x70, 0x6f, 0x72, 0x74, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64,
|
||
0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54,
|
||
0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x65, 0x74, 0x74, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
|
||
0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x73, 0x65, 0x74,
|
||
0x74, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75,
|
||
0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x75, 0x69, 0x64, 0x73, 0x22,
|
||
0xdc, 0x01, 0x0a, 0x0f, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x63,
|
||
0x6f, 0x72, 0x64, 0x12, 0x31, 0x0a, 0x05, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03,
|
||
0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x52, 0x65,
|
||
0x63, 0x6f, 0x72, 0x64, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
|
||
0x05, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72,
|
||
0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72,
|
||
0x61, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03,
|
||
0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14,
|
||
0x0a, 0x05, 0x72, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x72,
|
||
0x74, 0x69, 0x6d, 0x65, 0x1a, 0x48, 0x0a, 0x0a, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x45, 0x6e, 0x74,
|
||
0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||
0x03, 0x6b, 0x65, 0x79, 0x12, 0x24, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
|
||
0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x54,
|
||
0x65, 0x61, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x3f,
|
||
0x0a, 0x0d, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x12,
|
||
0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||
0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
|
||
0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
|
||
0xe1, 0x01, 0x0a, 0x13, 0x44, 0x42, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x42, 0x6f, 0x73,
|
||
0x73, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01,
|
||
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x6f, 0x63,
|
||
0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x6f,
|
||
0x63, 0x69, 0x61, 0x74, 0x79, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x06, 0x72, 0x65, 0x63, 0x6f, 0x72,
|
||
0x64, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65,
|
||
0x6e, 0x67, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x06, 0x72, 0x65, 0x63, 0x6f, 0x72,
|
||
0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
|
||
0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x65, 0x67,
|
||
0x72, 0x61, 0x6c, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x03, 0x52, 0x09, 0x69, 0x6e, 0x74, 0x65,
|
||
0x67, 0x72, 0x61, 0x6c, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
|
||
0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x0a,
|
||
0x05, 0x74, 0x61, 0x73, 0x6b, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x43,
|
||
0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x54, 0x61, 0x73, 0x6b, 0x52, 0x05, 0x74, 0x61,
|
||
0x73, 0x6b, 0x73, 0x2a, 0x50, 0x0a, 0x0a, 0x53, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x79, 0x4a, 0x6f,
|
||
0x62, 0x12, 0x09, 0x0a, 0x05, 0x4e, 0x4f, 0x4a, 0x4f, 0x42, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06,
|
||
0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x44, 0x4d, 0x49,
|
||
0x4e, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x56, 0x49, 0x43, 0x45, 0x50, 0x52, 0x45, 0x53, 0x49,
|
||
0x44, 0x45, 0x4e, 0x54, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x52, 0x45, 0x53, 0x49, 0x44,
|
||
0x45, 0x4e, 0x54, 0x10, 0x04, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70,
|
||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
}
|
||
|
||
var (
|
||
file_sociaty_sociaty_db_proto_rawDescOnce sync.Once
|
||
file_sociaty_sociaty_db_proto_rawDescData = file_sociaty_sociaty_db_proto_rawDesc
|
||
)
|
||
|
||
func file_sociaty_sociaty_db_proto_rawDescGZIP() []byte {
|
||
file_sociaty_sociaty_db_proto_rawDescOnce.Do(func() {
|
||
file_sociaty_sociaty_db_proto_rawDescData = protoimpl.X.CompressGZIP(file_sociaty_sociaty_db_proto_rawDescData)
|
||
})
|
||
return file_sociaty_sociaty_db_proto_rawDescData
|
||
}
|
||
|
||
var file_sociaty_sociaty_db_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||
var file_sociaty_sociaty_db_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
|
||
var file_sociaty_sociaty_db_proto_goTypes = []interface{}{
|
||
(SociatyJob)(0), // 0: SociatyJob
|
||
(*DBSociaty)(nil), // 1: DBSociaty
|
||
(*ApplyRecord)(nil), // 2: ApplyRecord
|
||
(*SociatyMember)(nil), // 3: SociatyMember
|
||
(*SociatyLog)(nil), // 4: SociatyLog
|
||
(*DBSociatyLog)(nil), // 5: DBSociatyLog
|
||
(*DBSociatyTask)(nil), // 6: DBSociatyTask
|
||
(*SociatyTask)(nil), // 7: SociatyTask
|
||
(*SociatyActivity)(nil), // 8: SociatyActivity
|
||
(*DBSociatyRank)(nil), // 9: DBSociatyRank
|
||
(*ChallengeTeamInfo)(nil), // 10: ChallengeTeamInfo
|
||
(*ChallengeTeam)(nil), // 11: ChallengeTeam
|
||
(*DBSociatyBossSports)(nil), // 12: DBSociatyBossSports
|
||
(*ChallengeRecord)(nil), // 13: ChallengeRecord
|
||
(*ChallengeTask)(nil), // 14: ChallengeTask
|
||
(*DBSociatyBossRecord)(nil), // 15: DBSociatyBossRecord
|
||
nil, // 16: SociatyMember.TeamsEntry
|
||
nil, // 17: ChallengeRecord.TeamsEntry
|
||
(*ConIProgress)(nil), // 18: ConIProgress
|
||
(*BattleFormation)(nil), // 19: BattleFormation
|
||
}
|
||
var file_sociaty_sociaty_db_proto_depIdxs = []int32{
|
||
2, // 0: DBSociaty.applyRecord:type_name -> ApplyRecord
|
||
3, // 1: DBSociaty.members:type_name -> SociatyMember
|
||
0, // 2: SociatyMember.job:type_name -> SociatyJob
|
||
16, // 3: SociatyMember.teams:type_name -> SociatyMember.TeamsEntry
|
||
4, // 4: DBSociatyLog.list:type_name -> SociatyLog
|
||
7, // 5: DBSociatyTask.taskList:type_name -> SociatyTask
|
||
8, // 6: DBSociatyTask.activityList:type_name -> SociatyActivity
|
||
18, // 7: SociatyTask.cond:type_name -> ConIProgress
|
||
19, // 8: ChallengeTeam.formation:type_name -> BattleFormation
|
||
17, // 9: ChallengeRecord.teams:type_name -> ChallengeRecord.TeamsEntry
|
||
13, // 10: DBSociatyBossRecord.record:type_name -> ChallengeRecord
|
||
14, // 11: DBSociatyBossRecord.tasks:type_name -> ChallengeTask
|
||
11, // 12: SociatyMember.TeamsEntry.value:type_name -> ChallengeTeam
|
||
11, // 13: ChallengeRecord.TeamsEntry.value:type_name -> ChallengeTeam
|
||
14, // [14:14] is the sub-list for method output_type
|
||
14, // [14:14] is the sub-list for method input_type
|
||
14, // [14:14] is the sub-list for extension type_name
|
||
14, // [14:14] is the sub-list for extension extendee
|
||
0, // [0:14] is the sub-list for field type_name
|
||
}
|
||
|
||
func init() { file_sociaty_sociaty_db_proto_init() }
|
||
func file_sociaty_sociaty_db_proto_init() {
|
||
if File_sociaty_sociaty_db_proto != nil {
|
||
return
|
||
}
|
||
file_battle_battle_msg_proto_init()
|
||
file_buried_buried_db_proto_init()
|
||
if !protoimpl.UnsafeEnabled {
|
||
file_sociaty_sociaty_db_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociaty); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ApplyRecord); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*SociatyMember); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*SociatyLog); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociatyLog); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociatyTask); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*SociatyTask); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*SociatyActivity); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociatyRank); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ChallengeTeamInfo); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ChallengeTeam); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociatyBossSports); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ChallengeRecord); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*ChallengeTask); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
file_sociaty_sociaty_db_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
|
||
switch v := v.(*DBSociatyBossRecord); i {
|
||
case 0:
|
||
return &v.state
|
||
case 1:
|
||
return &v.sizeCache
|
||
case 2:
|
||
return &v.unknownFields
|
||
default:
|
||
return nil
|
||
}
|
||
}
|
||
}
|
||
type x struct{}
|
||
out := protoimpl.TypeBuilder{
|
||
File: protoimpl.DescBuilder{
|
||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
RawDescriptor: file_sociaty_sociaty_db_proto_rawDesc,
|
||
NumEnums: 1,
|
||
NumMessages: 17,
|
||
NumExtensions: 0,
|
||
NumServices: 0,
|
||
},
|
||
GoTypes: file_sociaty_sociaty_db_proto_goTypes,
|
||
DependencyIndexes: file_sociaty_sociaty_db_proto_depIdxs,
|
||
EnumInfos: file_sociaty_sociaty_db_proto_enumTypes,
|
||
MessageInfos: file_sociaty_sociaty_db_proto_msgTypes,
|
||
}.Build()
|
||
File_sociaty_sociaty_db_proto = out.File
|
||
file_sociaty_sociaty_db_proto_rawDesc = nil
|
||
file_sociaty_sociaty_db_proto_goTypes = nil
|
||
file_sociaty_sociaty_db_proto_depIdxs = nil
|
||
}
|