From 66eb979b2e0817f1d661ade676259fd5a4911b6b Mon Sep 17 00:00:00 2001 From: GoEdgeLab Date: Mon, 9 Aug 2021 18:42:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=BB=BADNS=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 2 + go.sum | 11 +- pkg/dnsconfigs/ns_node_config.go | 1 + pkg/rpc/pb/model_ns_question_option.pb.go | 168 +++++ pkg/rpc/pb/service_ns_question_option.pb.go | 618 ++++++++++++++++++ .../models/model_ns_question_option.proto | 11 + .../protos/service_ns_question_option.proto | 43 ++ 7 files changed, 851 insertions(+), 3 deletions(-) create mode 100644 pkg/rpc/pb/model_ns_question_option.pb.go create mode 100644 pkg/rpc/pb/service_ns_question_option.pb.go create mode 100644 pkg/rpc/protos/models/model_ns_question_option.proto create mode 100644 pkg/rpc/protos/service_ns_question_option.proto diff --git a/go.mod b/go.mod index 64aae66..f5eb8be 100644 --- a/go.mod +++ b/go.mod @@ -7,6 +7,8 @@ require ( github.com/go-yaml/yaml v2.1.0+incompatible github.com/golang/protobuf v1.4.2 github.com/iwind/TeaGo v0.0.0-20210628135026-38575a4ab060 + golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect + golang.org/x/sys v0.0.0-20210303074136-134d130e1a04 // indirect google.golang.org/grpc v1.32.0 google.golang.org/protobuf v1.25.0 gopkg.in/yaml.v2 v2.4.0 // indirect diff --git a/go.sum b/go.sum index a2aeece..3986f81 100644 --- a/go.sum +++ b/go.sum @@ -91,8 +91,9 @@ golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 h1:AeiKBIuRw3UomYXSbLy0Mc2dDLfdtbT/IVn4keq83P0= golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 h1:qWPm9rbaAMKs8Bq/9LRpbMqxWRVUAQwMI9fVrssnTfw= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -108,11 +109,15 @@ golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20191010194322-b09406accb47/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 h1:DYfZAGf2WMFjMxbgTjaC+2HC7NkNAQs+6Q8b9WEB/F4= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210303074136-134d130e1a04 h1:cEhElsAv9LUt9ZUUocxzWe05oFLVd+AA2nstydTeI8g= +golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3 h1:cokOdA+Jmi5PJGXLlLllQSgYigAEfHXJAERHVMaCc2k= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= diff --git a/pkg/dnsconfigs/ns_node_config.go b/pkg/dnsconfigs/ns_node_config.go index 595b9c9..c5bb895 100644 --- a/pkg/dnsconfigs/ns_node_config.go +++ b/pkg/dnsconfigs/ns_node_config.go @@ -7,6 +7,7 @@ import "fmt" type NSNodeConfig struct { Id int64 `yaml:"id" json:"id"` NodeId string `yaml:"nodeId" json:"nodeId"` + Secret string `yaml:"secret" json:"secret"` ClusterId int64 `yaml:"clusterId" json:"clusterId"` AccessLogRef *NSAccessLogRef `yaml:"accessLogRef" json:"accessLogRef"` diff --git a/pkg/rpc/pb/model_ns_question_option.pb.go b/pkg/rpc/pb/model_ns_question_option.pb.go new file mode 100644 index 0000000..cb01f27 --- /dev/null +++ b/pkg/rpc/pb/model_ns_question_option.pb.go @@ -0,0 +1,168 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.25.0 +// protoc v3.12.3 +// source: models/model_ns_question_option.proto + +package pb + +import ( + proto "github.com/golang/protobuf/proto" + 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) +) + +// This is a compile-time assertion that a sufficiently up-to-date version +// of the legacy proto package is being used. +const _ = proto.ProtoPackageIsVersion4 + +// DNS查询选项 +type NSQuestionOption struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + ValuesJSON []byte `protobuf:"bytes,3,opt,name=valuesJSON,proto3" json:"valuesJSON,omitempty"` +} + +func (x *NSQuestionOption) Reset() { + *x = NSQuestionOption{} + if protoimpl.UnsafeEnabled { + mi := &file_models_model_ns_question_option_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *NSQuestionOption) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*NSQuestionOption) ProtoMessage() {} + +func (x *NSQuestionOption) ProtoReflect() protoreflect.Message { + mi := &file_models_model_ns_question_option_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 NSQuestionOption.ProtoReflect.Descriptor instead. +func (*NSQuestionOption) Descriptor() ([]byte, []int) { + return file_models_model_ns_question_option_proto_rawDescGZIP(), []int{0} +} + +func (x *NSQuestionOption) GetId() int64 { + if x != nil { + return x.Id + } + return 0 +} + +func (x *NSQuestionOption) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *NSQuestionOption) GetValuesJSON() []byte { + if x != nil { + return x.ValuesJSON + } + return nil +} + +var File_models_model_ns_question_option_proto protoreflect.FileDescriptor + +var file_models_model_ns_question_option_proto_rawDesc = []byte{ + 0x0a, 0x25, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x6e, + 0x73, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x22, 0x56, 0x0a, 0x10, 0x4e, + 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, + 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, + 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x4a, 0x53, 0x4f, + 0x4e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x4a, + 0x53, 0x4f, 0x4e, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, +} + +var ( + file_models_model_ns_question_option_proto_rawDescOnce sync.Once + file_models_model_ns_question_option_proto_rawDescData = file_models_model_ns_question_option_proto_rawDesc +) + +func file_models_model_ns_question_option_proto_rawDescGZIP() []byte { + file_models_model_ns_question_option_proto_rawDescOnce.Do(func() { + file_models_model_ns_question_option_proto_rawDescData = protoimpl.X.CompressGZIP(file_models_model_ns_question_option_proto_rawDescData) + }) + return file_models_model_ns_question_option_proto_rawDescData +} + +var file_models_model_ns_question_option_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_models_model_ns_question_option_proto_goTypes = []interface{}{ + (*NSQuestionOption)(nil), // 0: pb.NSQuestionOption +} +var file_models_model_ns_question_option_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_models_model_ns_question_option_proto_init() } +func file_models_model_ns_question_option_proto_init() { + if File_models_model_ns_question_option_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_models_model_ns_question_option_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*NSQuestionOption); 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_models_model_ns_question_option_proto_rawDesc, + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_models_model_ns_question_option_proto_goTypes, + DependencyIndexes: file_models_model_ns_question_option_proto_depIdxs, + MessageInfos: file_models_model_ns_question_option_proto_msgTypes, + }.Build() + File_models_model_ns_question_option_proto = out.File + file_models_model_ns_question_option_proto_rawDesc = nil + file_models_model_ns_question_option_proto_goTypes = nil + file_models_model_ns_question_option_proto_depIdxs = nil +} diff --git a/pkg/rpc/pb/service_ns_question_option.pb.go b/pkg/rpc/pb/service_ns_question_option.pb.go new file mode 100644 index 0000000..9fc0796 --- /dev/null +++ b/pkg/rpc/pb/service_ns_question_option.pb.go @@ -0,0 +1,618 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.25.0 +// protoc v3.12.3 +// source: service_ns_question_option.proto + +package pb + +import ( + context "context" + proto "github.com/golang/protobuf/proto" + grpc "google.golang.org/grpc" + codes "google.golang.org/grpc/codes" + status "google.golang.org/grpc/status" + 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) +) + +// This is a compile-time assertion that a sufficiently up-to-date version +// of the legacy proto package is being used. +const _ = proto.ProtoPackageIsVersion4 + +// 创建选项 +type CreateNSQuestionOptionRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + ValuesJSON []byte `protobuf:"bytes,2,opt,name=valuesJSON,proto3" json:"valuesJSON,omitempty"` +} + +func (x *CreateNSQuestionOptionRequest) Reset() { + *x = CreateNSQuestionOptionRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_service_ns_question_option_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CreateNSQuestionOptionRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateNSQuestionOptionRequest) ProtoMessage() {} + +func (x *CreateNSQuestionOptionRequest) ProtoReflect() protoreflect.Message { + mi := &file_service_ns_question_option_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 CreateNSQuestionOptionRequest.ProtoReflect.Descriptor instead. +func (*CreateNSQuestionOptionRequest) Descriptor() ([]byte, []int) { + return file_service_ns_question_option_proto_rawDescGZIP(), []int{0} +} + +func (x *CreateNSQuestionOptionRequest) GetName() string { + if x != nil { + return x.Name + } + return "" +} + +func (x *CreateNSQuestionOptionRequest) GetValuesJSON() []byte { + if x != nil { + return x.ValuesJSON + } + return nil +} + +type CreateNSQuestionOptionResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + NsQuestionOptionId int64 `protobuf:"varint,1,opt,name=nsQuestionOptionId,proto3" json:"nsQuestionOptionId,omitempty"` +} + +func (x *CreateNSQuestionOptionResponse) Reset() { + *x = CreateNSQuestionOptionResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_service_ns_question_option_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *CreateNSQuestionOptionResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CreateNSQuestionOptionResponse) ProtoMessage() {} + +func (x *CreateNSQuestionOptionResponse) ProtoReflect() protoreflect.Message { + mi := &file_service_ns_question_option_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 CreateNSQuestionOptionResponse.ProtoReflect.Descriptor instead. +func (*CreateNSQuestionOptionResponse) Descriptor() ([]byte, []int) { + return file_service_ns_question_option_proto_rawDescGZIP(), []int{1} +} + +func (x *CreateNSQuestionOptionResponse) GetNsQuestionOptionId() int64 { + if x != nil { + return x.NsQuestionOptionId + } + return 0 +} + +// 读取选项 +type FindNSQuestionOptionRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + NsQuestionOptionId int64 `protobuf:"varint,1,opt,name=nsQuestionOptionId,proto3" json:"nsQuestionOptionId,omitempty"` +} + +func (x *FindNSQuestionOptionRequest) Reset() { + *x = FindNSQuestionOptionRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_service_ns_question_option_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *FindNSQuestionOptionRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*FindNSQuestionOptionRequest) ProtoMessage() {} + +func (x *FindNSQuestionOptionRequest) ProtoReflect() protoreflect.Message { + mi := &file_service_ns_question_option_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 FindNSQuestionOptionRequest.ProtoReflect.Descriptor instead. +func (*FindNSQuestionOptionRequest) Descriptor() ([]byte, []int) { + return file_service_ns_question_option_proto_rawDescGZIP(), []int{2} +} + +func (x *FindNSQuestionOptionRequest) GetNsQuestionOptionId() int64 { + if x != nil { + return x.NsQuestionOptionId + } + return 0 +} + +type FindNSQuestionOptionResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + NsQuestionOption *NSQuestionOption `protobuf:"bytes,1,opt,name=nsQuestionOption,proto3" json:"nsQuestionOption,omitempty"` +} + +func (x *FindNSQuestionOptionResponse) Reset() { + *x = FindNSQuestionOptionResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_service_ns_question_option_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *FindNSQuestionOptionResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*FindNSQuestionOptionResponse) ProtoMessage() {} + +func (x *FindNSQuestionOptionResponse) ProtoReflect() protoreflect.Message { + mi := &file_service_ns_question_option_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 FindNSQuestionOptionResponse.ProtoReflect.Descriptor instead. +func (*FindNSQuestionOptionResponse) Descriptor() ([]byte, []int) { + return file_service_ns_question_option_proto_rawDescGZIP(), []int{3} +} + +func (x *FindNSQuestionOptionResponse) GetNsQuestionOption() *NSQuestionOption { + if x != nil { + return x.NsQuestionOption + } + return nil +} + +// 删除选项 +type DeleteNSQuestionOptionRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + NsQuestionOptionId int64 `protobuf:"varint,1,opt,name=nsQuestionOptionId,proto3" json:"nsQuestionOptionId,omitempty"` +} + +func (x *DeleteNSQuestionOptionRequest) Reset() { + *x = DeleteNSQuestionOptionRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_service_ns_question_option_proto_msgTypes[4] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *DeleteNSQuestionOptionRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*DeleteNSQuestionOptionRequest) ProtoMessage() {} + +func (x *DeleteNSQuestionOptionRequest) ProtoReflect() protoreflect.Message { + mi := &file_service_ns_question_option_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 DeleteNSQuestionOptionRequest.ProtoReflect.Descriptor instead. +func (*DeleteNSQuestionOptionRequest) Descriptor() ([]byte, []int) { + return file_service_ns_question_option_proto_rawDescGZIP(), []int{4} +} + +func (x *DeleteNSQuestionOptionRequest) GetNsQuestionOptionId() int64 { + if x != nil { + return x.NsQuestionOptionId + } + return 0 +} + +var File_service_ns_question_option_proto protoreflect.FileDescriptor + +var file_service_ns_question_option_proto_rawDesc = []byte{ + 0x0a, 0x20, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x73, 0x5f, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62, 0x1a, 0x19, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x72, + 0x70, 0x63, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x1a, 0x25, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, + 0x6e, 0x73, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x53, 0x0a, 0x1d, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, + 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0c, 0x52, 0x0a, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x50, 0x0a, + 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, + 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x2e, 0x0a, 0x12, 0x6e, 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x6e, 0x73, 0x51, + 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, + 0x4d, 0x0a, 0x1b, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, + 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, + 0x0a, 0x12, 0x6e, 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x6e, 0x73, 0x51, 0x75, + 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x60, + 0x0a, 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, + 0x0a, 0x10, 0x6e, 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x4e, 0x53, + 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, + 0x6e, 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x22, 0x4f, 0x0a, 0x1d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, + 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x6e, 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x6e, + 0x73, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x64, 0x32, 0xa2, 0x02, 0x0a, 0x17, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5f, 0x0a, + 0x16, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, + 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x70, 0x62, 0x2e, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x59, + 0x0a, 0x14, 0x66, 0x69, 0x6e, 0x64, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1f, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, + 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, + 0x64, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4b, 0x0a, 0x16, 0x64, 0x65, 0x6c, + 0x65, 0x74, 0x65, 0x4e, 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4e, + 0x53, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x50, 0x43, 0x53, + 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +} + +var ( + file_service_ns_question_option_proto_rawDescOnce sync.Once + file_service_ns_question_option_proto_rawDescData = file_service_ns_question_option_proto_rawDesc +) + +func file_service_ns_question_option_proto_rawDescGZIP() []byte { + file_service_ns_question_option_proto_rawDescOnce.Do(func() { + file_service_ns_question_option_proto_rawDescData = protoimpl.X.CompressGZIP(file_service_ns_question_option_proto_rawDescData) + }) + return file_service_ns_question_option_proto_rawDescData +} + +var file_service_ns_question_option_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_service_ns_question_option_proto_goTypes = []interface{}{ + (*CreateNSQuestionOptionRequest)(nil), // 0: pb.CreateNSQuestionOptionRequest + (*CreateNSQuestionOptionResponse)(nil), // 1: pb.CreateNSQuestionOptionResponse + (*FindNSQuestionOptionRequest)(nil), // 2: pb.FindNSQuestionOptionRequest + (*FindNSQuestionOptionResponse)(nil), // 3: pb.FindNSQuestionOptionResponse + (*DeleteNSQuestionOptionRequest)(nil), // 4: pb.DeleteNSQuestionOptionRequest + (*NSQuestionOption)(nil), // 5: pb.NSQuestionOption + (*RPCSuccess)(nil), // 6: pb.RPCSuccess +} +var file_service_ns_question_option_proto_depIdxs = []int32{ + 5, // 0: pb.FindNSQuestionOptionResponse.nsQuestionOption:type_name -> pb.NSQuestionOption + 0, // 1: pb.NSQuestionOptionService.createNSQuestionOption:input_type -> pb.CreateNSQuestionOptionRequest + 2, // 2: pb.NSQuestionOptionService.findNSQuestionOption:input_type -> pb.FindNSQuestionOptionRequest + 4, // 3: pb.NSQuestionOptionService.deleteNSQuestionOption:input_type -> pb.DeleteNSQuestionOptionRequest + 1, // 4: pb.NSQuestionOptionService.createNSQuestionOption:output_type -> pb.CreateNSQuestionOptionResponse + 3, // 5: pb.NSQuestionOptionService.findNSQuestionOption:output_type -> pb.FindNSQuestionOptionResponse + 6, // 6: pb.NSQuestionOptionService.deleteNSQuestionOption:output_type -> pb.RPCSuccess + 4, // [4:7] is the sub-list for method output_type + 1, // [1:4] is the sub-list for method input_type + 1, // [1:1] is the sub-list for extension type_name + 1, // [1:1] is the sub-list for extension extendee + 0, // [0:1] is the sub-list for field type_name +} + +func init() { file_service_ns_question_option_proto_init() } +func file_service_ns_question_option_proto_init() { + if File_service_ns_question_option_proto != nil { + return + } + file_models_rpc_messages_proto_init() + file_models_model_ns_question_option_proto_init() + if !protoimpl.UnsafeEnabled { + file_service_ns_question_option_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*CreateNSQuestionOptionRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_service_ns_question_option_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*CreateNSQuestionOptionResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_service_ns_question_option_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*FindNSQuestionOptionRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_service_ns_question_option_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*FindNSQuestionOptionResponse); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_service_ns_question_option_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*DeleteNSQuestionOptionRequest); 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_service_ns_question_option_proto_rawDesc, + NumEnums: 0, + NumMessages: 5, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_service_ns_question_option_proto_goTypes, + DependencyIndexes: file_service_ns_question_option_proto_depIdxs, + MessageInfos: file_service_ns_question_option_proto_msgTypes, + }.Build() + File_service_ns_question_option_proto = out.File + file_service_ns_question_option_proto_rawDesc = nil + file_service_ns_question_option_proto_goTypes = nil + file_service_ns_question_option_proto_depIdxs = nil +} + +// Reference imports to suppress errors if they are not otherwise used. +var _ context.Context +var _ grpc.ClientConnInterface + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the grpc package it is being compiled against. +const _ = grpc.SupportPackageIsVersion6 + +// NSQuestionOptionServiceClient is the client API for NSQuestionOptionService service. +// +// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +type NSQuestionOptionServiceClient interface { + // 创建选项 + CreateNSQuestionOption(ctx context.Context, in *CreateNSQuestionOptionRequest, opts ...grpc.CallOption) (*CreateNSQuestionOptionResponse, error) + // 读取选项 + FindNSQuestionOption(ctx context.Context, in *FindNSQuestionOptionRequest, opts ...grpc.CallOption) (*FindNSQuestionOptionResponse, error) + // 删除选项 + DeleteNSQuestionOption(ctx context.Context, in *DeleteNSQuestionOptionRequest, opts ...grpc.CallOption) (*RPCSuccess, error) +} + +type nSQuestionOptionServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewNSQuestionOptionServiceClient(cc grpc.ClientConnInterface) NSQuestionOptionServiceClient { + return &nSQuestionOptionServiceClient{cc} +} + +func (c *nSQuestionOptionServiceClient) CreateNSQuestionOption(ctx context.Context, in *CreateNSQuestionOptionRequest, opts ...grpc.CallOption) (*CreateNSQuestionOptionResponse, error) { + out := new(CreateNSQuestionOptionResponse) + err := c.cc.Invoke(ctx, "/pb.NSQuestionOptionService/createNSQuestionOption", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *nSQuestionOptionServiceClient) FindNSQuestionOption(ctx context.Context, in *FindNSQuestionOptionRequest, opts ...grpc.CallOption) (*FindNSQuestionOptionResponse, error) { + out := new(FindNSQuestionOptionResponse) + err := c.cc.Invoke(ctx, "/pb.NSQuestionOptionService/findNSQuestionOption", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *nSQuestionOptionServiceClient) DeleteNSQuestionOption(ctx context.Context, in *DeleteNSQuestionOptionRequest, opts ...grpc.CallOption) (*RPCSuccess, error) { + out := new(RPCSuccess) + err := c.cc.Invoke(ctx, "/pb.NSQuestionOptionService/deleteNSQuestionOption", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +// NSQuestionOptionServiceServer is the server API for NSQuestionOptionService service. +type NSQuestionOptionServiceServer interface { + // 创建选项 + CreateNSQuestionOption(context.Context, *CreateNSQuestionOptionRequest) (*CreateNSQuestionOptionResponse, error) + // 读取选项 + FindNSQuestionOption(context.Context, *FindNSQuestionOptionRequest) (*FindNSQuestionOptionResponse, error) + // 删除选项 + DeleteNSQuestionOption(context.Context, *DeleteNSQuestionOptionRequest) (*RPCSuccess, error) +} + +// UnimplementedNSQuestionOptionServiceServer can be embedded to have forward compatible implementations. +type UnimplementedNSQuestionOptionServiceServer struct { +} + +func (*UnimplementedNSQuestionOptionServiceServer) CreateNSQuestionOption(context.Context, *CreateNSQuestionOptionRequest) (*CreateNSQuestionOptionResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method CreateNSQuestionOption not implemented") +} +func (*UnimplementedNSQuestionOptionServiceServer) FindNSQuestionOption(context.Context, *FindNSQuestionOptionRequest) (*FindNSQuestionOptionResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method FindNSQuestionOption not implemented") +} +func (*UnimplementedNSQuestionOptionServiceServer) DeleteNSQuestionOption(context.Context, *DeleteNSQuestionOptionRequest) (*RPCSuccess, error) { + return nil, status.Errorf(codes.Unimplemented, "method DeleteNSQuestionOption not implemented") +} + +func RegisterNSQuestionOptionServiceServer(s *grpc.Server, srv NSQuestionOptionServiceServer) { + s.RegisterService(&_NSQuestionOptionService_serviceDesc, srv) +} + +func _NSQuestionOptionService_CreateNSQuestionOption_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(CreateNSQuestionOptionRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NSQuestionOptionServiceServer).CreateNSQuestionOption(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pb.NSQuestionOptionService/CreateNSQuestionOption", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NSQuestionOptionServiceServer).CreateNSQuestionOption(ctx, req.(*CreateNSQuestionOptionRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NSQuestionOptionService_FindNSQuestionOption_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(FindNSQuestionOptionRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NSQuestionOptionServiceServer).FindNSQuestionOption(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pb.NSQuestionOptionService/FindNSQuestionOption", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NSQuestionOptionServiceServer).FindNSQuestionOption(ctx, req.(*FindNSQuestionOptionRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _NSQuestionOptionService_DeleteNSQuestionOption_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(DeleteNSQuestionOptionRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(NSQuestionOptionServiceServer).DeleteNSQuestionOption(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/pb.NSQuestionOptionService/DeleteNSQuestionOption", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(NSQuestionOptionServiceServer).DeleteNSQuestionOption(ctx, req.(*DeleteNSQuestionOptionRequest)) + } + return interceptor(ctx, in, info, handler) +} + +var _NSQuestionOptionService_serviceDesc = grpc.ServiceDesc{ + ServiceName: "pb.NSQuestionOptionService", + HandlerType: (*NSQuestionOptionServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "createNSQuestionOption", + Handler: _NSQuestionOptionService_CreateNSQuestionOption_Handler, + }, + { + MethodName: "findNSQuestionOption", + Handler: _NSQuestionOptionService_FindNSQuestionOption_Handler, + }, + { + MethodName: "deleteNSQuestionOption", + Handler: _NSQuestionOptionService_DeleteNSQuestionOption_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "service_ns_question_option.proto", +} diff --git a/pkg/rpc/protos/models/model_ns_question_option.proto b/pkg/rpc/protos/models/model_ns_question_option.proto new file mode 100644 index 0000000..988f969 --- /dev/null +++ b/pkg/rpc/protos/models/model_ns_question_option.proto @@ -0,0 +1,11 @@ +syntax = "proto3"; +option go_package = "./pb"; + +package pb; + +// DNS查询选项 +message NSQuestionOption { + int64 id = 1; + string name = 2; + bytes valuesJSON = 3; +} \ No newline at end of file diff --git a/pkg/rpc/protos/service_ns_question_option.proto b/pkg/rpc/protos/service_ns_question_option.proto new file mode 100644 index 0000000..2fcb83a --- /dev/null +++ b/pkg/rpc/protos/service_ns_question_option.proto @@ -0,0 +1,43 @@ +syntax = "proto3"; +option go_package = "./pb"; + +package pb; + +import "models/rpc_messages.proto"; +import "models/model_ns_question_option.proto"; + +// DNS查询选项 +service NSQuestionOptionService { + // 创建选项 + rpc createNSQuestionOption(CreateNSQuestionOptionRequest) returns (CreateNSQuestionOptionResponse); + + // 读取选项 + rpc findNSQuestionOption(FindNSQuestionOptionRequest) returns (FindNSQuestionOptionResponse); + + // 删除选项 + rpc deleteNSQuestionOption(DeleteNSQuestionOptionRequest) returns (RPCSuccess); +} + +// 创建选项 +message CreateNSQuestionOptionRequest { + string name = 1; + bytes valuesJSON = 2; +} + +message CreateNSQuestionOptionResponse { + int64 nsQuestionOptionId = 1; +} + +// 读取选项 +message FindNSQuestionOptionRequest { + int64 nsQuestionOptionId = 1; +} + +message FindNSQuestionOptionResponse { + NSQuestionOption nsQuestionOption = 1; +} + +// 删除选项 +message DeleteNSQuestionOptionRequest { + int64 nsQuestionOptionId = 1; +} \ No newline at end of file