// Code generated by protoc-gen-go. DO NOT EDIT. // source: common_service.proto // package声明符,用来防止不同的消息类型有命名冲突 package pb import ( context "context" fmt "fmt" proto "github.com/golang/protobuf/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" math "math" v1 "property-household/pb/v1" ) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("common_service.proto", fileDescriptor_1c30f963b95fce05) } var fileDescriptor_1c30f963b95fce05 = []byte{ // 233 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x90, 0x4d, 0x4b, 0xc4, 0x30, 0x10, 0x86, 0xc5, 0xc3, 0xa2, 0xb9, 0x88, 0x61, 0x3f, 0x60, 0x41, 0x84, 0xc5, 0xab, 0x59, 0x56, 0x6f, 0x82, 0x87, 0xf5, 0xe3, 0x6a, 0x4b, 0xc5, 0x8b, 0x97, 0x42, 0x9a, 0x81, 0x46, 0x9a, 0x4e, 0xcc, 0xa4, 0xc1, 0xfe, 0x3b, 0x7f, 0x9a, 0xd0, 0x34, 0x07, 0xa9, 0xb2, 0xd7, 0xf7, 0x79, 0xdf, 0x67, 0x60, 0xd8, 0xbc, 0x42, 0x63, 0xb0, 0x2d, 0x09, 0x5c, 0xd0, 0x15, 0x08, 0xeb, 0xd0, 0x23, 0x67, 0x56, 0x8a, 0x31, 0x59, 0x9f, 0x85, 0xdd, 0x36, 0x96, 0x22, 0xbc, 0xf9, 0x3e, 0x66, 0xb3, 0xc7, 0x21, 0xe0, 0x77, 0xec, 0x24, 0x77, 0x18, 0x74, 0x5b, 0x01, 0x5f, 0x0a, 0x2b, 0xcb, 0xb0, 0x13, 0x29, 0x28, 0xe0, 0xb3, 0x03, 0xf2, 0xeb, 0xf9, 0x24, 0xb7, 0x4d, 0xbf, 0x39, 0xe2, 0x8a, 0x2d, 0x5f, 0x7b, 0xf2, 0x60, 0x72, 0x70, 0x46, 0x13, 0x69, 0x6c, 0x0b, 0xec, 0x3c, 0x38, 0x7e, 0x35, 0x2e, 0xfe, 0xc6, 0xc9, 0xbb, 0x39, 0xd0, 0x8a, 0x57, 0xde, 0xd8, 0x79, 0x46, 0x94, 0xc9, 0x8f, 0x27, 0x68, 0x5e, 0xd0, 0x3f, 0x7f, 0x69, 0xf2, 0xfc, 0x72, 0x9c, 0x4e, 0x48, 0x72, 0x5f, 0xfc, 0x5f, 0x88, 0xda, 0x7b, 0x76, 0x1a, 0xd9, 0x5e, 0x29, 0xbe, 0xfa, 0xd5, 0xde, 0x2b, 0x95, 0x34, 0x8b, 0x29, 0x18, 0xe6, 0x0f, 0xab, 0xf7, 0x85, 0x75, 0x68, 0xc1, 0xf9, 0xfe, 0xba, 0xc6, 0x8e, 0xa0, 0xc6, 0x46, 0x6d, 0xad, 0x94, 0xb3, 0xe1, 0xc5, 0xb7, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x62, 0x9b, 0x79, 0x75, 0x97, 0x01, 0x00, 0x00, } // 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 // CommonClient is the client API for Common service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type CommonClient interface { // Province(ctx context.Context, in *v1.ProvinceRequest, opts ...grpc.CallOption) (*v1.ProvinceReply, error) // 获取权限节点路由和方法对应的code SystemPermissionRouter(ctx context.Context, in *v1.SystemPermissionRouterRequest, opts ...grpc.CallOption) (*v1.SystemPermissionRouterReply, error) // 对象存储删除无用的数据 OssObjDelNotExist(ctx context.Context, in *v1.OssObjDelNotExistRequest, opts ...grpc.CallOption) (*v1.OssObjDelNotExistReply, error) // 对象存储添加到公共区 OssObjAdd(ctx context.Context, in *v1.OssObjAddRequest, opts ...grpc.CallOption) (*v1.OssObjAddReply, error) } type commonClient struct { cc grpc.ClientConnInterface } func NewCommonClient(cc grpc.ClientConnInterface) CommonClient { return &commonClient{cc} } func (c *commonClient) Province(ctx context.Context, in *v1.ProvinceRequest, opts ...grpc.CallOption) (*v1.ProvinceReply, error) { out := new(v1.ProvinceReply) err := c.cc.Invoke(ctx, "/pb.service.Common/Province", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *commonClient) SystemPermissionRouter(ctx context.Context, in *v1.SystemPermissionRouterRequest, opts ...grpc.CallOption) (*v1.SystemPermissionRouterReply, error) { out := new(v1.SystemPermissionRouterReply) err := c.cc.Invoke(ctx, "/pb.service.Common/SystemPermissionRouter", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *commonClient) OssObjDelNotExist(ctx context.Context, in *v1.OssObjDelNotExistRequest, opts ...grpc.CallOption) (*v1.OssObjDelNotExistReply, error) { out := new(v1.OssObjDelNotExistReply) err := c.cc.Invoke(ctx, "/pb.service.Common/OssObjDelNotExist", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *commonClient) OssObjAdd(ctx context.Context, in *v1.OssObjAddRequest, opts ...grpc.CallOption) (*v1.OssObjAddReply, error) { out := new(v1.OssObjAddReply) err := c.cc.Invoke(ctx, "/pb.service.Common/OssObjAdd", in, out, opts...) if err != nil { return nil, err } return out, nil } // CommonServer is the server API for Common service. type CommonServer interface { // Province(context.Context, *v1.ProvinceRequest) (*v1.ProvinceReply, error) // 获取权限节点路由和方法对应的code SystemPermissionRouter(context.Context, *v1.SystemPermissionRouterRequest) (*v1.SystemPermissionRouterReply, error) // 对象存储删除无用的数据 OssObjDelNotExist(context.Context, *v1.OssObjDelNotExistRequest) (*v1.OssObjDelNotExistReply, error) // 对象存储添加到公共区 OssObjAdd(context.Context, *v1.OssObjAddRequest) (*v1.OssObjAddReply, error) } // UnimplementedCommonServer can be embedded to have forward compatible implementations. type UnimplementedCommonServer struct { } func (*UnimplementedCommonServer) Province(ctx context.Context, req *v1.ProvinceRequest) (*v1.ProvinceReply, error) { return nil, status.Errorf(codes.Unimplemented, "method Province not implemented") } func (*UnimplementedCommonServer) SystemPermissionRouter(ctx context.Context, req *v1.SystemPermissionRouterRequest) (*v1.SystemPermissionRouterReply, error) { return nil, status.Errorf(codes.Unimplemented, "method SystemPermissionRouter not implemented") } func (*UnimplementedCommonServer) OssObjDelNotExist(ctx context.Context, req *v1.OssObjDelNotExistRequest) (*v1.OssObjDelNotExistReply, error) { return nil, status.Errorf(codes.Unimplemented, "method OssObjDelNotExist not implemented") } func (*UnimplementedCommonServer) OssObjAdd(ctx context.Context, req *v1.OssObjAddRequest) (*v1.OssObjAddReply, error) { return nil, status.Errorf(codes.Unimplemented, "method OssObjAdd not implemented") } func RegisterCommonServer(s *grpc.Server, srv CommonServer) { s.RegisterService(&_Common_serviceDesc, srv) } func _Common_Province_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(v1.ProvinceRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CommonServer).Province(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/pb.service.Common/Province", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CommonServer).Province(ctx, req.(*v1.ProvinceRequest)) } return interceptor(ctx, in, info, handler) } func _Common_SystemPermissionRouter_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(v1.SystemPermissionRouterRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CommonServer).SystemPermissionRouter(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/pb.service.Common/SystemPermissionRouter", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CommonServer).SystemPermissionRouter(ctx, req.(*v1.SystemPermissionRouterRequest)) } return interceptor(ctx, in, info, handler) } func _Common_OssObjDelNotExist_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(v1.OssObjDelNotExistRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CommonServer).OssObjDelNotExist(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/pb.service.Common/OssObjDelNotExist", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CommonServer).OssObjDelNotExist(ctx, req.(*v1.OssObjDelNotExistRequest)) } return interceptor(ctx, in, info, handler) } func _Common_OssObjAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(v1.OssObjAddRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(CommonServer).OssObjAdd(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/pb.service.Common/OssObjAdd", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(CommonServer).OssObjAdd(ctx, req.(*v1.OssObjAddRequest)) } return interceptor(ctx, in, info, handler) } var _Common_serviceDesc = grpc.ServiceDesc{ ServiceName: "pb.service.Common", HandlerType: (*CommonServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Province", Handler: _Common_Province_Handler, }, { MethodName: "SystemPermissionRouter", Handler: _Common_SystemPermissionRouter_Handler, }, { MethodName: "OssObjDelNotExist", Handler: _Common_OssObjDelNotExist_Handler, }, { MethodName: "OssObjAdd", Handler: _Common_OssObjAdd_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "common_service.proto", }