123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // source: household_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-device-gateway/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("household_service.proto", fileDescriptor_29439a8e98771332)
- }
- var fileDescriptor_29439a8e98771332 = []byte{
- // 151 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0xc8, 0x2f, 0x2d,
- 0x4e, 0xcd, 0xc8, 0xcf, 0x49, 0x89, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28,
- 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0x09, 0x95, 0x19, 0xea, 0xc3,
- 0xd5, 0x41, 0xe4, 0x8d, 0x62, 0xb8, 0x38, 0x3d, 0x60, 0x42, 0x42, 0xfe, 0x5c, 0xfc, 0xa1, 0xc5,
- 0xa9, 0x45, 0xe1, 0x15, 0x01, 0xa5, 0x49, 0x39, 0x99, 0xc9, 0x8e, 0x29, 0x29, 0x42, 0xb2, 0x7a,
- 0x05, 0x49, 0xf1, 0x65, 0x86, 0x7a, 0x68, 0xe2, 0x41, 0xa9, 0x85, 0xa5, 0xa9, 0xc5, 0x25, 0x52,
- 0xd2, 0xb8, 0xa4, 0x0b, 0x72, 0x2a, 0x95, 0x18, 0x9c, 0x64, 0xa2, 0xa4, 0x0a, 0x8a, 0xf2, 0x0b,
- 0x52, 0x8b, 0x4a, 0x2a, 0x75, 0x53, 0x52, 0x41, 0x8e, 0xd0, 0x4d, 0x4f, 0x2c, 0x49, 0x2d, 0x4f,
- 0xac, 0xd4, 0x2f, 0x48, 0x4a, 0x62, 0x03, 0x3b, 0xc1, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x57,
- 0xce, 0x67, 0xb9, 0xbd, 0x00, 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
- // HouseholdClient is the client API for Household service.
- //
- // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
- type HouseholdClient interface {
- // 添加用户公众号信息
- UserWxPublicAdd(ctx context.Context, in *v1.UserWxPublicAddRequest, opts ...grpc.CallOption) (*v1.UserWxPublicAddReply, error)
- }
- type householdClient struct {
- cc grpc.ClientConnInterface
- }
- func NewHouseholdClient(cc grpc.ClientConnInterface) HouseholdClient {
- return &householdClient{cc}
- }
- func (c *householdClient) UserWxPublicAdd(ctx context.Context, in *v1.UserWxPublicAddRequest, opts ...grpc.CallOption) (*v1.UserWxPublicAddReply, error) {
- out := new(v1.UserWxPublicAddReply)
- err := c.cc.Invoke(ctx, "/pb.service.Household/UserWxPublicAdd", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // HouseholdServer is the server API for Household service.
- type HouseholdServer interface {
- // 添加用户公众号信息
- UserWxPublicAdd(context.Context, *v1.UserWxPublicAddRequest) (*v1.UserWxPublicAddReply, error)
- }
- // UnimplementedHouseholdServer can be embedded to have forward compatible implementations.
- type UnimplementedHouseholdServer struct {
- }
- func (*UnimplementedHouseholdServer) UserWxPublicAdd(ctx context.Context, req *v1.UserWxPublicAddRequest) (*v1.UserWxPublicAddReply, error) {
- return nil, status.Errorf(codes.Unimplemented, "method UserWxPublicAdd not implemented")
- }
- func RegisterHouseholdServer(s *grpc.Server, srv HouseholdServer) {
- s.RegisterService(&_Household_serviceDesc, srv)
- }
- func _Household_UserWxPublicAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(v1.UserWxPublicAddRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(HouseholdServer).UserWxPublicAdd(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/pb.service.Household/UserWxPublicAdd",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(HouseholdServer).UserWxPublicAdd(ctx, req.(*v1.UserWxPublicAddRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _Household_serviceDesc = grpc.ServiceDesc{
- ServiceName: "pb.service.Household",
- HandlerType: (*HouseholdServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "UserWxPublicAdd",
- Handler: _Household_UserWxPublicAdd_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "household_service.proto",
- }
|