From f349dca0f7ceeeba37368153c833f7e88ee5f515 Mon Sep 17 00:00:00 2001 From: ayflying Date: Tue, 25 Mar 2025 15:00:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=80=E6=9C=89=E5=8C=85=E5=90=8C=E6=84=8F?= =?UTF-8?q?=E6=94=B9=E4=B8=BApkg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/pgk/v1/pgk.pb.go | 237 -------------------------- internal/logic/systemCron/listener.go | 2 +- pgk/pgk.go | 2 +- pgk/rank/rank.go | 2 +- pkg/notice/notice.go | 2 +- pkg/pkg.go | 2 +- pkg/rank/rank.go | 2 +- 7 files changed, 6 insertions(+), 243 deletions(-) delete mode 100644 api/pgk/v1/pgk.pb.go diff --git a/api/pgk/v1/pgk.pb.go b/api/pgk/v1/pgk.pb.go deleted file mode 100644 index cc39505..0000000 --- a/api/pgk/v1/pgk.pb.go +++ /dev/null @@ -1,237 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.28.1 -// protoc v3.20.0 -// source: pgk/v1/pgk.proto - -package v1 - -import ( - reflect "reflect" - sync "sync" - - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" -) - -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) -) - -// 定义 NoticeType 枚举 -type NoticeType int32 - -const ( - NoticeType_DINGTALK NoticeType = 0 - NoticeType_WECHAT NoticeType = 1 - NoticeType_EMAIL NoticeType = 2 - NoticeType_SMS NoticeType = 3 - NoticeType_VOICE NoticeType = 4 -) - -// Enum value maps for NoticeType. -var ( - NoticeType_name = map[int32]string{ - 0: "DINGTALK", - 1: "WECHAT", - 2: "EMAIL", - 3: "SMS", - 4: "VOICE", - } - NoticeType_value = map[string]int32{ - "DINGTALK": 0, - "WECHAT": 1, - "EMAIL": 2, - "SMS": 3, - "VOICE": 4, - } -) - -func (x NoticeType) Enum() *NoticeType { - p := new(NoticeType) - *p = x - return p -} - -func (x NoticeType) String() string { - return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) -} - -func (NoticeType) Descriptor() protoreflect.EnumDescriptor { - return file_pgk_v1_pgk_proto_enumTypes[0].Descriptor() -} - -func (NoticeType) Type() protoreflect.EnumType { - return &file_pgk_v1_pgk_proto_enumTypes[0] -} - -func (x NoticeType) Number() protoreflect.EnumNumber { - return protoreflect.EnumNumber(x) -} - -// Deprecated: Use NoticeType.Descriptor instead. -func (NoticeType) EnumDescriptor() ([]byte, []int) { - return file_pgk_v1_pgk_proto_rawDescGZIP(), []int{0} -} - -// 排行榜数据 -type RankData struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` - Score int64 `protobuf:"varint,2,opt,name=score,proto3" json:"score,omitempty"` - Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"` - UpdateTs int64 `protobuf:"varint,4,opt,name=update_ts,json=updateTs,proto3" json:"update_ts,omitempty"` -} - -func (x *RankData) Reset() { - *x = RankData{} - if protoimpl.UnsafeEnabled { - mi := &file_pgk_v1_pgk_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *RankData) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*RankData) ProtoMessage() {} - -func (x *RankData) ProtoReflect() protoreflect.Message { - mi := &file_pgk_v1_pgk_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 RankData.ProtoReflect.Descriptor instead. -func (*RankData) Descriptor() ([]byte, []int) { - return file_pgk_v1_pgk_proto_rawDescGZIP(), []int{0} -} - -func (x *RankData) GetId() int64 { - if x != nil { - return x.Id - } - return 0 -} - -func (x *RankData) GetScore() int64 { - if x != nil { - return x.Score - } - return 0 -} - -func (x *RankData) GetRank() int32 { - if x != nil { - return x.Rank - } - return 0 -} - -func (x *RankData) GetUpdateTs() int64 { - if x != nil { - return x.UpdateTs - } - return 0 -} - -var File_pgk_v1_pgk_proto protoreflect.FileDescriptor - -var file_pgk_v1_pgk_proto_rawDesc = []byte{ - 0x0a, 0x10, 0x70, 0x67, 0x6b, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x67, 0x6b, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x07, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x22, 0x61, 0x0a, 0x08, 0x52, - 0x61, 0x6e, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x12, 0x0a, - 0x04, 0x72, 0x61, 0x6e, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x72, 0x61, 0x6e, - 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x73, 0x18, 0x04, - 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x73, 0x2a, 0x45, - 0x0a, 0x0a, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, - 0x44, 0x49, 0x4e, 0x47, 0x54, 0x41, 0x4c, 0x4b, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x57, 0x45, - 0x43, 0x48, 0x41, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, - 0x02, 0x12, 0x07, 0x0a, 0x03, 0x53, 0x4d, 0x53, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x4f, - 0x49, 0x43, 0x45, 0x10, 0x04, 0x42, 0x2b, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, - 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x79, 0x66, 0x6c, 0x79, 0x69, 0x6e, 0x67, 0x2f, 0x75, 0x74, 0x69, - 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x67, 0x6f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x67, 0x6b, 0x2f, - 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_pgk_v1_pgk_proto_rawDescOnce sync.Once - file_pgk_v1_pgk_proto_rawDescData = file_pgk_v1_pgk_proto_rawDesc -) - -func file_pgk_v1_pgk_proto_rawDescGZIP() []byte { - file_pgk_v1_pgk_proto_rawDescOnce.Do(func() { - file_pgk_v1_pgk_proto_rawDescData = protoimpl.X.CompressGZIP(file_pgk_v1_pgk_proto_rawDescData) - }) - return file_pgk_v1_pgk_proto_rawDescData -} - -var file_pgk_v1_pgk_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_pgk_v1_pgk_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_pgk_v1_pgk_proto_goTypes = []interface{}{ - (NoticeType)(0), // 0: package.NoticeType - (*RankData)(nil), // 1: package.RankData -} -var file_pgk_v1_pgk_proto_depIdxs = []int32{ - 0, // [0:0] is the sub-list for method output_type - 0, // [0:0] is the sub-list for method input_type - 0, // [0:0] is the sub-list for extension type_name - 0, // [0:0] is the sub-list for extension extendee - 0, // [0:0] is the sub-list for field type_name -} - -func init() { file_pgk_v1_pgk_proto_init() } -func file_pgk_v1_pgk_proto_init() { - if File_pgk_v1_pgk_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_pgk_v1_pgk_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RankData); 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_pgk_v1_pgk_proto_rawDesc, - NumEnums: 1, - NumMessages: 1, - NumExtensions: 0, - NumServices: 0, - }, - GoTypes: file_pgk_v1_pgk_proto_goTypes, - DependencyIndexes: file_pgk_v1_pgk_proto_depIdxs, - EnumInfos: file_pgk_v1_pgk_proto_enumTypes, - MessageInfos: file_pgk_v1_pgk_proto_msgTypes, - }.Build() - File_pgk_v1_pgk_proto = out.File - file_pgk_v1_pgk_proto_rawDesc = nil - file_pgk_v1_pgk_proto_goTypes = nil - file_pgk_v1_pgk_proto_depIdxs = nil -} diff --git a/internal/logic/systemCron/listener.go b/internal/logic/systemCron/listener.go index a4676c1..87b66c7 100644 --- a/internal/logic/systemCron/listener.go +++ b/internal/logic/systemCron/listener.go @@ -3,7 +3,7 @@ package systemCron import ( "encoding/json" "fmt" - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "github.com/ayflying/utility_go/pkg/notice" "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/gclient" diff --git a/pgk/pgk.go b/pgk/pgk.go index b94da9a..c3ffd38 100644 --- a/pgk/pgk.go +++ b/pgk/pgk.go @@ -1,7 +1,7 @@ package pgk import ( - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "github.com/ayflying/utility_go/pkg/aycache" "github.com/ayflying/utility_go/pkg/notice" "github.com/ayflying/utility_go/pkg/rank" diff --git a/pgk/rank/rank.go b/pgk/rank/rank.go index e3ceb87..a68e1ad 100644 --- a/pgk/rank/rank.go +++ b/pgk/rank/rank.go @@ -2,7 +2,7 @@ package rank import ( "fmt" - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "time" "github.com/gogf/gf/v2/database/gredis" diff --git a/pkg/notice/notice.go b/pkg/notice/notice.go index 702b80e..51bb308 100644 --- a/pkg/notice/notice.go +++ b/pkg/notice/notice.go @@ -1,7 +1,7 @@ package notice import ( - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "github.com/ayflying/utility_go/pkg/notice/drive" ) diff --git a/pkg/pkg.go b/pkg/pkg.go index 46fe0a6..224d25b 100644 --- a/pkg/pkg.go +++ b/pkg/pkg.go @@ -1,7 +1,7 @@ package pkg import ( - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "github.com/ayflying/utility_go/pkg/aycache" "github.com/ayflying/utility_go/pkg/config" "github.com/ayflying/utility_go/pkg/notice" diff --git a/pkg/rank/rank.go b/pkg/rank/rank.go index 0a95f02..47325ab 100644 --- a/pkg/rank/rank.go +++ b/pkg/rank/rank.go @@ -2,7 +2,7 @@ package rank import ( "fmt" - v1 "github.com/ayflying/utility_go/api/pgk/v1" + v1 "github.com/ayflying/utility_go/api/pkg/v1" "time" "github.com/gogf/gf/v2/database/gredis"