household_service.pb.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: household_service.proto
  3. // package声明符,用来防止不同的消息类型有命名冲突
  4. package pb
  5. import (
  6. context "context"
  7. fmt "fmt"
  8. proto "github.com/golang/protobuf/proto"
  9. grpc "google.golang.org/grpc"
  10. codes "google.golang.org/grpc/codes"
  11. status "google.golang.org/grpc/status"
  12. math "math"
  13. v1 "property-callback-gateway/pb/v1"
  14. )
  15. // Reference imports to suppress errors if they are not otherwise used.
  16. var _ = proto.Marshal
  17. var _ = fmt.Errorf
  18. var _ = math.Inf
  19. // This is a compile-time assertion to ensure that this generated file
  20. // is compatible with the proto package it is being compiled against.
  21. // A compilation error at this line likely means your copy of the
  22. // proto package needs to be updated.
  23. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  24. func init() {
  25. proto.RegisterFile("household_service.proto", fileDescriptor_29439a8e98771332)
  26. }
  27. var fileDescriptor_29439a8e98771332 = []byte{
  28. // 155 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0xc8, 0x2f, 0x2d,
  30. 0x4e, 0xcd, 0xc8, 0xcf, 0x49, 0x89, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28,
  31. 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0x09, 0x95, 0x19, 0xea, 0xc3,
  32. 0xd5, 0x41, 0xe4, 0x8d, 0x62, 0xb8, 0x38, 0x3d, 0x60, 0x42, 0x42, 0xfe, 0x5c, 0xfc, 0xa1, 0xc5,
  33. 0xa9, 0x45, 0xe1, 0x15, 0x01, 0xa5, 0x49, 0x39, 0x99, 0xc9, 0x8e, 0x29, 0x29, 0x42, 0xb2, 0x7a,
  34. 0x05, 0x49, 0xf1, 0x65, 0x86, 0x7a, 0x68, 0xe2, 0x41, 0xa9, 0x85, 0xa5, 0xa9, 0xc5, 0x25, 0x52,
  35. 0xd2, 0xb8, 0xa4, 0x0b, 0x72, 0x2a, 0x95, 0x18, 0x9c, 0xe4, 0xa2, 0x64, 0x0a, 0x8a, 0xf2, 0x0b,
  36. 0x52, 0x8b, 0x4a, 0x2a, 0x75, 0x93, 0x13, 0x73, 0x72, 0x92, 0x12, 0x93, 0xb3, 0x75, 0xd3, 0x13,
  37. 0x4b, 0x52, 0xcb, 0x13, 0x2b, 0xf5, 0x0b, 0x92, 0x92, 0xd8, 0xc0, 0x8e, 0x30, 0x06, 0x04, 0x00,
  38. 0x00, 0xff, 0xff, 0xbb, 0xfc, 0xed, 0xc2, 0xbf, 0x00, 0x00, 0x00,
  39. }
  40. // Reference imports to suppress errors if they are not otherwise used.
  41. var _ context.Context
  42. var _ grpc.ClientConnInterface
  43. // This is a compile-time assertion to ensure that this generated file
  44. // is compatible with the grpc package it is being compiled against.
  45. const _ = grpc.SupportPackageIsVersion6
  46. // HouseholdClient is the client API for Household service.
  47. //
  48. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  49. type HouseholdClient interface {
  50. // 添加用户公众号信息
  51. UserWxPublicAdd(ctx context.Context, in *v1.UserWxPublicAddRequest, opts ...grpc.CallOption) (*v1.UserWxPublicAddReply, error)
  52. }
  53. type householdClient struct {
  54. cc grpc.ClientConnInterface
  55. }
  56. func NewHouseholdClient(cc grpc.ClientConnInterface) HouseholdClient {
  57. return &householdClient{cc}
  58. }
  59. func (c *householdClient) UserWxPublicAdd(ctx context.Context, in *v1.UserWxPublicAddRequest, opts ...grpc.CallOption) (*v1.UserWxPublicAddReply, error) {
  60. out := new(v1.UserWxPublicAddReply)
  61. err := c.cc.Invoke(ctx, "/pb.service.Household/UserWxPublicAdd", in, out, opts...)
  62. if err != nil {
  63. return nil, err
  64. }
  65. return out, nil
  66. }
  67. // HouseholdServer is the server API for Household service.
  68. type HouseholdServer interface {
  69. // 添加用户公众号信息
  70. UserWxPublicAdd(context.Context, *v1.UserWxPublicAddRequest) (*v1.UserWxPublicAddReply, error)
  71. }
  72. // UnimplementedHouseholdServer can be embedded to have forward compatible implementations.
  73. type UnimplementedHouseholdServer struct {
  74. }
  75. func (*UnimplementedHouseholdServer) UserWxPublicAdd(ctx context.Context, req *v1.UserWxPublicAddRequest) (*v1.UserWxPublicAddReply, error) {
  76. return nil, status.Errorf(codes.Unimplemented, "method UserWxPublicAdd not implemented")
  77. }
  78. func RegisterHouseholdServer(s *grpc.Server, srv HouseholdServer) {
  79. s.RegisterService(&_Household_serviceDesc, srv)
  80. }
  81. func _Household_UserWxPublicAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  82. in := new(v1.UserWxPublicAddRequest)
  83. if err := dec(in); err != nil {
  84. return nil, err
  85. }
  86. if interceptor == nil {
  87. return srv.(HouseholdServer).UserWxPublicAdd(ctx, in)
  88. }
  89. info := &grpc.UnaryServerInfo{
  90. Server: srv,
  91. FullMethod: "/pb.service.Household/UserWxPublicAdd",
  92. }
  93. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  94. return srv.(HouseholdServer).UserWxPublicAdd(ctx, req.(*v1.UserWxPublicAddRequest))
  95. }
  96. return interceptor(ctx, in, info, handler)
  97. }
  98. var _Household_serviceDesc = grpc.ServiceDesc{
  99. ServiceName: "pb.service.Household",
  100. HandlerType: (*HouseholdServer)(nil),
  101. Methods: []grpc.MethodDesc{
  102. {
  103. MethodName: "UserWxPublicAdd",
  104. Handler: _Household_UserWxPublicAdd_Handler,
  105. },
  106. },
  107. Streams: []grpc.StreamDesc{},
  108. Metadata: "household_service.proto",
  109. }