|
@@ -0,0 +1,265 @@
|
|
|
|
|
+// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
|
+// versions:
|
|
|
|
|
+// protoc-gen-go v1.28.1-devel
|
|
|
|
|
+// protoc v3.21.8
|
|
|
|
|
+// source: check.proto
|
|
|
|
|
+
|
|
|
|
|
+package check
|
|
|
|
|
+
|
|
|
|
|
+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 CheckRequest struct {
|
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
+
|
|
|
|
|
+ Content string `protobuf:"bytes,1,opt,name=content,proto3" json:"content"` // 内容 (url或者文本)
|
|
|
|
|
+ Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 审核的等级 (0是最高级)
|
|
|
|
|
+ OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
|
|
|
|
|
+ AppId string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId"`
|
|
|
|
|
+ IsMiniProgram bool `protobuf:"varint,5,opt,name=isMiniProgram,proto3" json:"isMiniProgram"` // 是否是小程序用户
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) Reset() {
|
|
|
|
|
+ *x = CheckRequest{}
|
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
|
+ mi := &file_check_proto_msgTypes[0]
|
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) String() string {
|
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (*CheckRequest) ProtoMessage() {}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) ProtoReflect() protoreflect.Message {
|
|
|
|
|
+ mi := &file_check_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 CheckRequest.ProtoReflect.Descriptor instead.
|
|
|
|
|
+func (*CheckRequest) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return file_check_proto_rawDescGZIP(), []int{0}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) GetContent() string {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.Content
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) GetLevel() int64 {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.Level
|
|
|
|
|
+ }
|
|
|
|
|
+ return 0
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) GetOpenId() string {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.OpenId
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) GetAppId() string {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.AppId
|
|
|
|
|
+ }
|
|
|
|
|
+ return ""
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckRequest) GetIsMiniProgram() bool {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.IsMiniProgram
|
|
|
|
|
+ }
|
|
|
|
|
+ return false
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+type CheckReply struct {
|
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
+
|
|
|
|
|
+ IsUnPass bool `protobuf:"varint,1,opt,name=isUnPass,proto3" json:"isUnPass"`
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckReply) Reset() {
|
|
|
|
|
+ *x = CheckReply{}
|
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
|
+ mi := &file_check_proto_msgTypes[1]
|
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckReply) String() string {
|
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (*CheckReply) ProtoMessage() {}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckReply) ProtoReflect() protoreflect.Message {
|
|
|
|
|
+ mi := &file_check_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 CheckReply.ProtoReflect.Descriptor instead.
|
|
|
|
|
+func (*CheckReply) Descriptor() ([]byte, []int) {
|
|
|
|
|
+ return file_check_proto_rawDescGZIP(), []int{1}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *CheckReply) GetIsUnPass() bool {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.IsUnPass
|
|
|
|
|
+ }
|
|
|
|
|
+ return false
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var File_check_proto protoreflect.FileDescriptor
|
|
|
|
|
+
|
|
|
|
|
+var file_check_proto_rawDesc = []byte{
|
|
|
|
|
+ 0x0a, 0x0b, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x61,
|
|
|
|
|
+ 0x70, 0x69, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x92, 0x01, 0x0a, 0x0c, 0x43, 0x68, 0x65,
|
|
|
|
|
+ 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 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, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
|
+ 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65,
|
|
|
|
|
+ 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49,
|
|
|
|
|
+ 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
|
|
|
|
+ 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x4d, 0x69, 0x6e,
|
|
|
|
|
+ 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d,
|
|
|
|
|
+ 0x69, 0x73, 0x4d, 0x69, 0x6e, 0x69, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x22, 0x28, 0x0a,
|
|
|
|
|
+ 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x69,
|
|
|
|
|
+ 0x73, 0x55, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69,
|
|
|
|
|
+ 0x73, 0x55, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x32, 0xc8, 0x01, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63,
|
|
|
|
|
+ 0x6b, 0x12, 0x3d, 0x0a, 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x65, 0x78, 0x74, 0x12, 0x17,
|
|
|
|
|
+ 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
|
|
|
+ 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
|
|
|
|
|
+ 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
|
|
|
|
|
+ 0x12, 0x40, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
|
|
|
|
|
+ 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65,
|
|
|
|
|
+ 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
|
|
|
|
|
+ 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79,
|
|
|
|
|
+ 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65,
|
|
|
|
|
+ 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65,
|
|
|
|
|
+ 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
|
|
|
|
|
+ 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79,
|
|
|
|
|
+ 0x22, 0x00, 0x42, 0x40, 0x0a, 0x09, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x50,
|
|
|
|
|
+ 0x01, 0x5a, 0x31, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f,
|
|
|
|
|
+ 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
|
+ 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3b, 0x63,
|
|
|
|
|
+ 0x68, 0x65, 0x63, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var (
|
|
|
|
|
+ file_check_proto_rawDescOnce sync.Once
|
|
|
|
|
+ file_check_proto_rawDescData = file_check_proto_rawDesc
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+func file_check_proto_rawDescGZIP() []byte {
|
|
|
|
|
+ file_check_proto_rawDescOnce.Do(func() {
|
|
|
|
|
+ file_check_proto_rawDescData = protoimpl.X.CompressGZIP(file_check_proto_rawDescData)
|
|
|
|
|
+ })
|
|
|
|
|
+ return file_check_proto_rawDescData
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+var file_check_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
|
|
|
+var file_check_proto_goTypes = []interface{}{
|
|
|
|
|
+ (*CheckRequest)(nil), // 0: api.check.CheckRequest
|
|
|
|
|
+ (*CheckReply)(nil), // 1: api.check.CheckReply
|
|
|
|
|
+}
|
|
|
|
|
+var file_check_proto_depIdxs = []int32{
|
|
|
|
|
+ 0, // 0: api.check.Check.CheckText:input_type -> api.check.CheckRequest
|
|
|
|
|
+ 0, // 1: api.check.Check.CheckPicture:input_type -> api.check.CheckRequest
|
|
|
|
|
+ 0, // 2: api.check.Check.CheckVoice:input_type -> api.check.CheckRequest
|
|
|
|
|
+ 1, // 3: api.check.Check.CheckText:output_type -> api.check.CheckReply
|
|
|
|
|
+ 1, // 4: api.check.Check.CheckPicture:output_type -> api.check.CheckReply
|
|
|
|
|
+ 1, // 5: api.check.Check.CheckVoice:output_type -> api.check.CheckReply
|
|
|
|
|
+ 3, // [3:6] is the sub-list for method output_type
|
|
|
|
|
+ 0, // [0:3] 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_check_proto_init() }
|
|
|
|
|
+func file_check_proto_init() {
|
|
|
|
|
+ if File_check_proto != nil {
|
|
|
|
|
+ return
|
|
|
|
|
+ }
|
|
|
|
|
+ if !protoimpl.UnsafeEnabled {
|
|
|
|
|
+ file_check_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
+ switch v := v.(*CheckRequest); i {
|
|
|
|
|
+ case 0:
|
|
|
|
|
+ return &v.state
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ return &v.sizeCache
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ return &v.unknownFields
|
|
|
|
|
+ default:
|
|
|
|
|
+ return nil
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ file_check_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
+ switch v := v.(*CheckReply); 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_check_proto_rawDesc,
|
|
|
|
|
+ NumEnums: 0,
|
|
|
|
|
+ NumMessages: 2,
|
|
|
|
|
+ NumExtensions: 0,
|
|
|
|
|
+ NumServices: 1,
|
|
|
|
|
+ },
|
|
|
|
|
+ GoTypes: file_check_proto_goTypes,
|
|
|
|
|
+ DependencyIndexes: file_check_proto_depIdxs,
|
|
|
|
|
+ MessageInfos: file_check_proto_msgTypes,
|
|
|
|
|
+ }.Build()
|
|
|
|
|
+ File_check_proto = out.File
|
|
|
|
|
+ file_check_proto_rawDesc = nil
|
|
|
|
|
+ file_check_proto_goTypes = nil
|
|
|
|
|
+ file_check_proto_depIdxs = nil
|
|
|
|
|
+}
|