|
@@ -0,0 +1,246 @@
|
|
|
|
|
+// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
|
+// versions:
|
|
|
|
|
+// protoc-gen-go v1.30.0-devel
|
|
|
|
|
+// protoc v5.26.1
|
|
|
|
|
+// source: kuban/api/annotations.proto
|
|
|
|
|
+
|
|
|
|
|
+package annotations
|
|
|
|
|
+
|
|
|
|
|
+import (
|
|
|
|
|
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
|
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
|
+ descriptorpb "google.golang.org/protobuf/types/descriptorpb"
|
|
|
|
|
+ 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)
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+// 自定义option
|
|
|
|
|
+type Options struct {
|
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
+
|
|
|
|
|
+ // 操作记录
|
|
|
|
|
+ OperationRecord *OperationRecord `protobuf:"bytes,2,opt,name=operation_record,json=operationRecord,proto3" json:"operation_record"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *Options) Reset() {
|
|
|
|
|
+ *x = Options{}
|
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
|
+ mi := &file_kuban_api_annotations_proto_msgTypes[0]
|
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *Options) String() string {
|
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (*Options) ProtoMessage() {}
|
|
|
|
|
+
|
|
|
|
|
+func (x *Options) ProtoReflect() protoreflect.Message {
|
|
|
|
|
+ mi := &file_kuban_api_annotations_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 Options.ProtoReflect.Descriptor instead.
|
|
|
|
|
+func (*Options) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return file_kuban_api_annotations_proto_rawDescGZIP(), []int{0}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *Options) GetOperationRecord() *OperationRecord {
|
|
|
|
|
+ if x != nil && x.OperationRecord != nil {
|
|
|
|
|
+ return x.OperationRecord
|
|
|
|
|
+ }
|
|
|
|
|
+ return &OperationRecord{}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// 操作记录
|
|
|
|
|
+type OperationRecord struct {
|
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
+
|
|
|
|
|
+ // 接口是否需要记录
|
|
|
|
|
+ Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *OperationRecord) Reset() {
|
|
|
|
|
+ *x = OperationRecord{}
|
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
|
+ mi := &file_kuban_api_annotations_proto_msgTypes[1]
|
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *OperationRecord) String() string {
|
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (*OperationRecord) ProtoMessage() {}
|
|
|
|
|
+
|
|
|
|
|
+func (x *OperationRecord) ProtoReflect() protoreflect.Message {
|
|
|
|
|
+ mi := &file_kuban_api_annotations_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 OperationRecord.ProtoReflect.Descriptor instead.
|
|
|
|
|
+func (*OperationRecord) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return file_kuban_api_annotations_proto_rawDescGZIP(), []int{1}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *OperationRecord) GetEnabled() bool {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.Enabled
|
|
|
|
|
+ }
|
|
|
|
|
+ return false
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var file_kuban_api_annotations_proto_extTypes = []protoimpl.ExtensionInfo{
|
|
|
|
|
+ {
|
|
|
|
|
+ ExtendedType: (*descriptorpb.MethodOptions)(nil),
|
|
|
|
|
+ ExtensionType: (*Options)(nil),
|
|
|
|
|
+ Field: 10002,
|
|
|
|
|
+ Name: "kuban.api.options",
|
|
|
|
|
+ Tag: "bytes,10002,opt,name=options",
|
|
|
|
|
+ Filename: "kuban/api/annotations.proto",
|
|
|
|
|
+ },
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// Extension fields to descriptorpb.MethodOptions.
|
|
|
|
|
+var (
|
|
|
|
|
+ // optional kuban.api.Options options = 10002;
|
|
|
|
|
+ E_Options = &file_kuban_api_annotations_proto_extTypes[0]
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+var File_kuban_api_annotations_proto protoreflect.FileDescriptor
|
|
|
|
|
+
|
|
|
|
|
+var file_kuban_api_annotations_proto_rawDesc = []byte{
|
|
|
|
|
+ 0x0a, 0x1b, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f,
|
|
|
|
|
+ 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x6b,
|
|
|
|
|
+ 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
|
|
|
|
|
+ 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
|
|
|
|
|
+ 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x50, 0x0a, 0x07, 0x4f, 0x70,
|
|
|
|
|
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x45, 0x0a, 0x10, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
|
|
|
+ 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
|
|
|
+ 0x1a, 0x2e, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4f, 0x70, 0x65, 0x72,
|
|
|
|
|
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x0f, 0x6f, 0x70, 0x65,
|
|
|
|
|
+ 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x22, 0x2b, 0x0a, 0x0f,
|
|
|
|
|
+ 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12,
|
|
|
|
|
+ 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
|
|
|
|
|
+ 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x3a, 0x4d, 0x0a, 0x07, 0x6f, 0x70, 0x74,
|
|
|
|
|
+ 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
|
|
|
|
|
+ 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x4f, 0x70, 0x74,
|
|
|
|
|
+ 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x92, 0x4e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6b, 0x75,
|
|
|
|
|
+ 0x62, 0x61, 0x6e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52,
|
|
|
|
|
+ 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x43, 0x5a, 0x41, 0x67, 0x69, 0x74, 0x2e,
|
|
|
|
|
+ 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65,
|
|
|
|
|
+ 0x72, 0x2f, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x6b, 0x75, 0x62, 0x61,
|
|
|
|
|
+ 0x6e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
|
+ 0x73, 0x3b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x62, 0x06, 0x70,
|
|
|
|
|
+ 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var (
|
|
|
|
|
+ file_kuban_api_annotations_proto_rawDescOnce sync.Once
|
|
|
|
|
+ file_kuban_api_annotations_proto_rawDescData = file_kuban_api_annotations_proto_rawDesc
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+func file_kuban_api_annotations_proto_rawDescGZIP() []byte {
|
|
|
|
|
+ file_kuban_api_annotations_proto_rawDescOnce.Do(func() {
|
|
|
|
|
+ file_kuban_api_annotations_proto_rawDescData = protoimpl.X.CompressGZIP(file_kuban_api_annotations_proto_rawDescData)
|
|
|
|
|
+ })
|
|
|
|
|
+ return file_kuban_api_annotations_proto_rawDescData
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var file_kuban_api_annotations_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
|
|
|
+var file_kuban_api_annotations_proto_goTypes = []interface{}{
|
|
|
|
|
+ (*Options)(nil), // 0: kuban.api.Options
|
|
|
|
|
+ (*OperationRecord)(nil), // 1: kuban.api.OperationRecord
|
|
|
|
|
+ (*descriptorpb.MethodOptions)(nil), // 2: google.protobuf.MethodOptions
|
|
|
|
|
+}
|
|
|
|
|
+var file_kuban_api_annotations_proto_depIdxs = []int32{
|
|
|
|
|
+ 1, // 0: kuban.api.Options.operation_record:type_name -> kuban.api.OperationRecord
|
|
|
|
|
+ 2, // 1: kuban.api.options:extendee -> google.protobuf.MethodOptions
|
|
|
|
|
+ 0, // 2: kuban.api.options:type_name -> kuban.api.Options
|
|
|
|
|
+ 3, // [3:3] is the sub-list for method output_type
|
|
|
|
|
+ 3, // [3:3] is the sub-list for method input_type
|
|
|
|
|
+ 2, // [2:3] is the sub-list for extension type_name
|
|
|
|
|
+ 1, // [1:2] is the sub-list for extension extendee
|
|
|
|
|
+ 0, // [0:1] is the sub-list for field type_name
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func init() { file_kuban_api_annotations_proto_init() }
|
|
|
|
|
+func file_kuban_api_annotations_proto_init() {
|
|
|
|
|
+ if File_kuban_api_annotations_proto != nil {
|
|
|
|
|
+ return
|
|
|
|
|
+ }
|
|
|
|
|
+ if !protoimpl.UnsafeEnabled {
|
|
|
|
|
+ file_kuban_api_annotations_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
+ switch v := v.(*Options); i {
|
|
|
|
|
+ case 0:
|
|
|
|
|
+ return &v.state
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ return &v.sizeCache
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ return &v.unknownFields
|
|
|
|
|
+ default:
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ file_kuban_api_annotations_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
+ switch v := v.(*OperationRecord); 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_kuban_api_annotations_proto_rawDesc,
|
|
|
|
|
+ NumEnums: 0,
|
|
|
|
|
+ NumMessages: 2,
|
|
|
|
|
+ NumExtensions: 1,
|
|
|
|
|
+ NumServices: 0,
|
|
|
|
|
+ },
|
|
|
|
|
+ GoTypes: file_kuban_api_annotations_proto_goTypes,
|
|
|
|
|
+ DependencyIndexes: file_kuban_api_annotations_proto_depIdxs,
|
|
|
|
|
+ MessageInfos: file_kuban_api_annotations_proto_msgTypes,
|
|
|
|
|
+ ExtensionInfos: file_kuban_api_annotations_proto_extTypes,
|
|
|
|
|
+ }.Build()
|
|
|
|
|
+ File_kuban_api_annotations_proto = out.File
|
|
|
|
|
+ file_kuban_api_annotations_proto_rawDesc = nil
|
|
|
|
|
+ file_kuban_api_annotations_proto_goTypes = nil
|
|
|
|
|
+ file_kuban_api_annotations_proto_depIdxs = nil
|
|
|
|
|
+}
|