上传星作图数据库修复
This commit is contained in:
parent
c1cfc45afe
commit
794fe30c21
@ -9,6 +9,10 @@ import (
|
|||||||
cfg "go_dreamfactory/sys/configure/structs"
|
cfg "go_dreamfactory/sys/configure/structs"
|
||||||
"go_dreamfactory/sys/db"
|
"go_dreamfactory/sys/db"
|
||||||
"math"
|
"math"
|
||||||
|
|
||||||
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
||||||
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
|
"go.mongodb.org/mongo-driver/x/bsonx"
|
||||||
)
|
)
|
||||||
|
|
||||||
///星座图 数据组件
|
///星座图 数据组件
|
||||||
@ -22,21 +26,30 @@ func (this *modelHoroscope) Init(service core.IService, module core.IModule, com
|
|||||||
this.TableName = comm.TableHoroscope
|
this.TableName = comm.TableHoroscope
|
||||||
this.MCompModel.Init(service, module, comp, opt)
|
this.MCompModel.Init(service, module, comp, opt)
|
||||||
this.module = module.(*Horoscope)
|
this.module = module.(*Horoscope)
|
||||||
|
// 通过uid创建索引
|
||||||
|
this.DB.CreateIndex(core.SqlTable(this.TableName), mongo.IndexModel{
|
||||||
|
Keys: bsonx.Doc{{Key: "uid", Value: bsonx.Int32(1)}},
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//查询用户装备数据
|
//查询用户装备数据
|
||||||
func (this *modelHoroscope) queryInfo(uId string) (result *pb.DBHoroscope, err error) {
|
func (this *modelHoroscope) queryInfo(uid string) (result *pb.DBHoroscope, err error) {
|
||||||
result = &pb.DBHoroscope{
|
result = &pb.DBHoroscope{
|
||||||
Uid: uId,
|
Uid: uid,
|
||||||
Nodes: make(map[int32]int32),
|
Nodes: make(map[int32]int32),
|
||||||
}
|
}
|
||||||
if err = this.Get(uId, result); err != nil && err != mgo.MongodbNil {
|
if err = this.Get(uid, result); err != nil && err != mgo.MongodbNil {
|
||||||
this.module.Errorln(err)
|
this.module.Errorln(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err == mgo.MongodbNil {
|
if err == mgo.MongodbNil {
|
||||||
err = nil
|
result = &pb.DBHoroscope{
|
||||||
|
Id: primitive.NewObjectID().Hex(),
|
||||||
|
Uid: uid,
|
||||||
|
Nodes: make(map[int32]int32),
|
||||||
|
}
|
||||||
|
err = this.Add(uid, result)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -26,9 +26,10 @@ type DBHoroscope struct {
|
|||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
|
|
||||||
Uid string `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid" bson:"_id"`
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id" bson:"_id"` //ID
|
||||||
Nodes map[int32]int32 `protobuf:"bytes,2,rep,name=nodes,proto3" json:"nodes" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` //节点信息 key:是节点id value:等级
|
Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid"` //uid
|
||||||
Lastrest int64 `protobuf:"varint,3,opt,name=lastrest,proto3" json:"lastrest"` //上次重置时间
|
Nodes map[int32]int32 `protobuf:"bytes,3,rep,name=nodes,proto3" json:"nodes" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` //节点信息 key:是节点id value:等级
|
||||||
|
Lastrest int64 `protobuf:"varint,4,opt,name=lastrest,proto3" json:"lastrest"` //上次重置时间
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *DBHoroscope) Reset() {
|
func (x *DBHoroscope) Reset() {
|
||||||
@ -63,6 +64,13 @@ func (*DBHoroscope) Descriptor() ([]byte, []int) {
|
|||||||
return file_horoscope_horoscope_db_proto_rawDescGZIP(), []int{0}
|
return file_horoscope_horoscope_db_proto_rawDescGZIP(), []int{0}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *DBHoroscope) GetId() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Id
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func (x *DBHoroscope) GetUid() string {
|
func (x *DBHoroscope) GetUid() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Uid
|
return x.Uid
|
||||||
@ -88,13 +96,14 @@ var File_horoscope_horoscope_db_proto protoreflect.FileDescriptor
|
|||||||
|
|
||||||
var file_horoscope_horoscope_db_proto_rawDesc = []byte{
|
var file_horoscope_horoscope_db_proto_rawDesc = []byte{
|
||||||
0x0a, 0x1c, 0x68, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2f, 0x68, 0x6f, 0x72, 0x6f,
|
0x0a, 0x1c, 0x68, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2f, 0x68, 0x6f, 0x72, 0x6f,
|
||||||
0x73, 0x63, 0x6f, 0x70, 0x65, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa4,
|
0x73, 0x63, 0x6f, 0x70, 0x65, 0x5f, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb4,
|
||||||
0x01, 0x0a, 0x0b, 0x44, 0x42, 0x48, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x10,
|
0x01, 0x0a, 0x0b, 0x44, 0x42, 0x48, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0e,
|
||||||
0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64,
|
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10,
|
||||||
0x12, 0x2d, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x69, 0x64,
|
||||||
|
0x12, 0x2d, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||||||
0x17, 0x2e, 0x44, 0x42, 0x48, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2e, 0x4e, 0x6f,
|
0x17, 0x2e, 0x44, 0x42, 0x48, 0x6f, 0x72, 0x6f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2e, 0x4e, 0x6f,
|
||||||
0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x12,
|
0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x12,
|
||||||
0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x72, 0x65, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
|
0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x72, 0x65, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||||
0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x72, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x0a, 0x0a, 0x4e,
|
0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x72, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x0a, 0x0a, 0x4e,
|
||||||
0x6f, 0x64, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
|
0x6f, 0x64, 0x65, 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, 0x14, 0x0a, 0x05, 0x76,
|
0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
|
||||||
|
@ -20,6 +20,50 @@ const (
|
|||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
//通知
|
||||||
|
type NotifyEvent int32
|
||||||
|
|
||||||
|
const (
|
||||||
|
NotifyEvent_Notify_1001 NotifyEvent = 0
|
||||||
|
)
|
||||||
|
|
||||||
|
// Enum value maps for NotifyEvent.
|
||||||
|
var (
|
||||||
|
NotifyEvent_name = map[int32]string{
|
||||||
|
0: "Notify_1001",
|
||||||
|
}
|
||||||
|
NotifyEvent_value = map[string]int32{
|
||||||
|
"Notify_1001": 0,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func (x NotifyEvent) Enum() *NotifyEvent {
|
||||||
|
p := new(NotifyEvent)
|
||||||
|
*p = x
|
||||||
|
return p
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x NotifyEvent) String() string {
|
||||||
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NotifyEvent) Descriptor() protoreflect.EnumDescriptor {
|
||||||
|
return file_notify_notify_db_proto_enumTypes[0].Descriptor()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (NotifyEvent) Type() protoreflect.EnumType {
|
||||||
|
return &file_notify_notify_db_proto_enumTypes[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x NotifyEvent) Number() protoreflect.EnumNumber {
|
||||||
|
return protoreflect.EnumNumber(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use NotifyEvent.Descriptor instead.
|
||||||
|
func (NotifyEvent) EnumDescriptor() ([]byte, []int) {
|
||||||
|
return file_notify_notify_db_proto_rawDescGZIP(), []int{0}
|
||||||
|
}
|
||||||
|
|
||||||
//系统公告数据结构
|
//系统公告数据结构
|
||||||
type DBSystemNotify struct {
|
type DBSystemNotify struct {
|
||||||
state protoimpl.MessageState
|
state protoimpl.MessageState
|
||||||
@ -121,7 +165,9 @@ var file_notify_notify_db_proto_rawDesc = []byte{
|
|||||||
0x73, 0x74, 0x6f, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x74, 0x6f,
|
0x73, 0x74, 0x6f, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x74, 0x6f,
|
||||||
0x70, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
|
0x70, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
|
||||||
0x52, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x74, 0x69, 0x6d, 0x65,
|
0x52, 0x05, 0x63, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x74, 0x69, 0x6d, 0x65,
|
||||||
0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x72, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x06, 0x5a,
|
0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x72, 0x74, 0x69, 0x6d, 0x65, 0x2a, 0x1e, 0x0a,
|
||||||
|
0x0b, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x0f, 0x0a, 0x0b,
|
||||||
|
0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x5f, 0x31, 0x30, 0x30, 0x31, 0x10, 0x00, 0x42, 0x06, 0x5a,
|
||||||
0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -137,9 +183,11 @@ func file_notify_notify_db_proto_rawDescGZIP() []byte {
|
|||||||
return file_notify_notify_db_proto_rawDescData
|
return file_notify_notify_db_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var file_notify_notify_db_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||||
var file_notify_notify_db_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
var file_notify_notify_db_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||||
var file_notify_notify_db_proto_goTypes = []interface{}{
|
var file_notify_notify_db_proto_goTypes = []interface{}{
|
||||||
(*DBSystemNotify)(nil), // 0: DBSystemNotify
|
(NotifyEvent)(0), // 0: NotifyEvent
|
||||||
|
(*DBSystemNotify)(nil), // 1: DBSystemNotify
|
||||||
}
|
}
|
||||||
var file_notify_notify_db_proto_depIdxs = []int32{
|
var file_notify_notify_db_proto_depIdxs = []int32{
|
||||||
0, // [0:0] is the sub-list for method output_type
|
0, // [0:0] is the sub-list for method output_type
|
||||||
@ -173,13 +221,14 @@ func file_notify_notify_db_proto_init() {
|
|||||||
File: protoimpl.DescBuilder{
|
File: protoimpl.DescBuilder{
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_notify_notify_db_proto_rawDesc,
|
RawDescriptor: file_notify_notify_db_proto_rawDesc,
|
||||||
NumEnums: 0,
|
NumEnums: 1,
|
||||||
NumMessages: 1,
|
NumMessages: 1,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 0,
|
NumServices: 0,
|
||||||
},
|
},
|
||||||
GoTypes: file_notify_notify_db_proto_goTypes,
|
GoTypes: file_notify_notify_db_proto_goTypes,
|
||||||
DependencyIndexes: file_notify_notify_db_proto_depIdxs,
|
DependencyIndexes: file_notify_notify_db_proto_depIdxs,
|
||||||
|
EnumInfos: file_notify_notify_db_proto_enumTypes,
|
||||||
MessageInfos: file_notify_notify_db_proto_msgTypes,
|
MessageInfos: file_notify_notify_db_proto_msgTypes,
|
||||||
}.Build()
|
}.Build()
|
||||||
File_notify_notify_db_proto = out.File
|
File_notify_notify_db_proto = out.File
|
||||||
|
@ -205,6 +205,45 @@ func (x *NotifyGetListResp) GetSysNotify() []*DBSystemNotify {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//通知事件推送
|
||||||
|
type NotifyEventPush struct {
|
||||||
|
state protoimpl.MessageState
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *NotifyEventPush) Reset() {
|
||||||
|
*x = NotifyEventPush{}
|
||||||
|
if protoimpl.UnsafeEnabled {
|
||||||
|
mi := &file_notify_notify_msg_proto_msgTypes[3]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *NotifyEventPush) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*NotifyEventPush) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *NotifyEventPush) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_notify_notify_msg_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 NotifyEventPush.ProtoReflect.Descriptor instead.
|
||||||
|
func (*NotifyEventPush) Descriptor() ([]byte, []int) {
|
||||||
|
return file_notify_notify_msg_proto_rawDescGZIP(), []int{3}
|
||||||
|
}
|
||||||
|
|
||||||
var File_notify_notify_msg_proto protoreflect.FileDescriptor
|
var File_notify_notify_msg_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
var file_notify_notify_msg_proto_rawDesc = []byte{
|
var file_notify_notify_msg_proto_rawDesc = []byte{
|
||||||
@ -235,8 +274,9 @@ var file_notify_notify_msg_proto_rawDesc = []byte{
|
|||||||
0x52, 0x0c, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2d,
|
0x52, 0x0c, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x61, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2d,
|
||||||
0x0a, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28,
|
0x0a, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x18, 0x02, 0x20, 0x03, 0x28,
|
||||||
0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x42, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x74, 0x69,
|
0x0b, 0x32, 0x0f, 0x2e, 0x44, 0x42, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4e, 0x6f, 0x74, 0x69,
|
||||||
0x66, 0x79, 0x52, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x42, 0x06, 0x5a,
|
0x66, 0x79, 0x52, 0x09, 0x53, 0x79, 0x73, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x22, 0x11, 0x0a,
|
||||||
0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
0x0f, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x50, 0x75, 0x73, 0x68,
|
||||||
|
0x42, 0x06, 0x5a, 0x04, 0x2e, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -251,21 +291,22 @@ func file_notify_notify_msg_proto_rawDescGZIP() []byte {
|
|||||||
return file_notify_notify_msg_proto_rawDescData
|
return file_notify_notify_msg_proto_rawDescData
|
||||||
}
|
}
|
||||||
|
|
||||||
var file_notify_notify_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
var file_notify_notify_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||||
var file_notify_notify_msg_proto_goTypes = []interface{}{
|
var file_notify_notify_msg_proto_goTypes = []interface{}{
|
||||||
(*NotifyErrorNotifyPush)(nil), // 0: NotifyErrorNotifyPush
|
(*NotifyErrorNotifyPush)(nil), // 0: NotifyErrorNotifyPush
|
||||||
(*NotifyGetListReq)(nil), // 1: NotifyGetListReq
|
(*NotifyGetListReq)(nil), // 1: NotifyGetListReq
|
||||||
(*NotifyGetListResp)(nil), // 2: NotifyGetListResp
|
(*NotifyGetListResp)(nil), // 2: NotifyGetListResp
|
||||||
(ErrorCode)(0), // 3: ErrorCode
|
(*NotifyEventPush)(nil), // 3: NotifyEventPush
|
||||||
(*anypb.Any)(nil), // 4: google.protobuf.Any
|
(ErrorCode)(0), // 4: ErrorCode
|
||||||
(*ErrorData)(nil), // 5: ErrorData
|
(*anypb.Any)(nil), // 5: google.protobuf.Any
|
||||||
(*DBSystemNotify)(nil), // 6: DBSystemNotify
|
(*ErrorData)(nil), // 6: ErrorData
|
||||||
|
(*DBSystemNotify)(nil), // 7: DBSystemNotify
|
||||||
}
|
}
|
||||||
var file_notify_notify_msg_proto_depIdxs = []int32{
|
var file_notify_notify_msg_proto_depIdxs = []int32{
|
||||||
3, // 0: NotifyErrorNotifyPush.Code:type_name -> ErrorCode
|
4, // 0: NotifyErrorNotifyPush.Code:type_name -> ErrorCode
|
||||||
4, // 1: NotifyErrorNotifyPush.arg:type_name -> google.protobuf.Any
|
5, // 1: NotifyErrorNotifyPush.arg:type_name -> google.protobuf.Any
|
||||||
5, // 2: NotifyErrorNotifyPush.err:type_name -> ErrorData
|
6, // 2: NotifyErrorNotifyPush.err:type_name -> ErrorData
|
||||||
6, // 3: NotifyGetListResp.SysNotify:type_name -> DBSystemNotify
|
7, // 3: NotifyGetListResp.SysNotify:type_name -> DBSystemNotify
|
||||||
4, // [4:4] is the sub-list for method output_type
|
4, // [4:4] is the sub-list for method output_type
|
||||||
4, // [4:4] is the sub-list for method input_type
|
4, // [4:4] is the sub-list for method input_type
|
||||||
4, // [4:4] is the sub-list for extension type_name
|
4, // [4:4] is the sub-list for extension type_name
|
||||||
@ -318,6 +359,18 @@ func file_notify_notify_msg_proto_init() {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
file_notify_notify_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||||
|
switch v := v.(*NotifyEventPush); i {
|
||||||
|
case 0:
|
||||||
|
return &v.state
|
||||||
|
case 1:
|
||||||
|
return &v.sizeCache
|
||||||
|
case 2:
|
||||||
|
return &v.unknownFields
|
||||||
|
default:
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
@ -325,7 +378,7 @@ func file_notify_notify_msg_proto_init() {
|
|||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: file_notify_notify_msg_proto_rawDesc,
|
RawDescriptor: file_notify_notify_msg_proto_rawDesc,
|
||||||
NumEnums: 0,
|
NumEnums: 0,
|
||||||
NumMessages: 3,
|
NumMessages: 4,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 0,
|
NumServices: 0,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user