garden_service.pb.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: garden_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-device-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("garden_service.proto", fileDescriptor_e527eed98167eca4)
  26. }
  27. var fileDescriptor_e527eed98167eca4 = []byte{
  28. // 147 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0x4f, 0x2c, 0x4a,
  30. 0x49, 0xcd, 0x8b, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9,
  31. 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0xf1, 0x97, 0x19, 0xea, 0x27, 0x67, 0x24, 0x16,
  32. 0xa5, 0x43, 0x25, 0x8d, 0xc2, 0xb8, 0xd8, 0xdc, 0xc1, 0x9a, 0x84, 0x7c, 0xb8, 0xf8, 0x9c, 0xc1,
  33. 0x32, 0xfe, 0x45, 0x29, 0xa9, 0x45, 0x01, 0x89, 0x95, 0x42, 0x32, 0x7a, 0x05, 0x49, 0xf1, 0x65,
  34. 0x86, 0x7a, 0xa8, 0xc2, 0x41, 0xa9, 0x85, 0xa5, 0xa9, 0xc5, 0x25, 0x52, 0x52, 0x38, 0x64, 0x0b,
  35. 0x72, 0x2a, 0x95, 0x18, 0x9c, 0x64, 0xa2, 0xa4, 0x0a, 0x8a, 0xf2, 0x0b, 0x52, 0x8b, 0x4a, 0x2a,
  36. 0x75, 0x53, 0x52, 0x41, 0x76, 0xeb, 0xa6, 0x27, 0x96, 0xa4, 0x96, 0x27, 0x56, 0xea, 0x17, 0x24,
  37. 0x25, 0xb1, 0x81, 0x2d, 0x37, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x5e, 0x46, 0xe6, 0xb1,
  38. 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. // GardenClient is the client API for Garden 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 GardenClient interface {
  50. // 确认订单已支付
  51. ChargeOrderPay(ctx context.Context, in *v1.ChargeOrderPayRequest, opts ...grpc.CallOption) (*v1.ChargeOrderPayReply, error)
  52. }
  53. type gardenClient struct {
  54. cc grpc.ClientConnInterface
  55. }
  56. func NewGardenClient(cc grpc.ClientConnInterface) GardenClient {
  57. return &gardenClient{cc}
  58. }
  59. func (c *gardenClient) ChargeOrderPay(ctx context.Context, in *v1.ChargeOrderPayRequest, opts ...grpc.CallOption) (*v1.ChargeOrderPayReply, error) {
  60. out := new(v1.ChargeOrderPayReply)
  61. err := c.cc.Invoke(ctx, "/pb.service.Garden/ChargeOrderPay", in, out, opts...)
  62. if err != nil {
  63. return nil, err
  64. }
  65. return out, nil
  66. }
  67. // GardenServer is the server API for Garden service.
  68. type GardenServer interface {
  69. // 确认订单已支付
  70. ChargeOrderPay(context.Context, *v1.ChargeOrderPayRequest) (*v1.ChargeOrderPayReply, error)
  71. }
  72. // UnimplementedGardenServer can be embedded to have forward compatible implementations.
  73. type UnimplementedGardenServer struct {
  74. }
  75. func (*UnimplementedGardenServer) ChargeOrderPay(ctx context.Context, req *v1.ChargeOrderPayRequest) (*v1.ChargeOrderPayReply, error) {
  76. return nil, status.Errorf(codes.Unimplemented, "method ChargeOrderPay not implemented")
  77. }
  78. func RegisterGardenServer(s *grpc.Server, srv GardenServer) {
  79. s.RegisterService(&_Garden_serviceDesc, srv)
  80. }
  81. func _Garden_ChargeOrderPay_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  82. in := new(v1.ChargeOrderPayRequest)
  83. if err := dec(in); err != nil {
  84. return nil, err
  85. }
  86. if interceptor == nil {
  87. return srv.(GardenServer).ChargeOrderPay(ctx, in)
  88. }
  89. info := &grpc.UnaryServerInfo{
  90. Server: srv,
  91. FullMethod: "/pb.service.Garden/ChargeOrderPay",
  92. }
  93. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  94. return srv.(GardenServer).ChargeOrderPay(ctx, req.(*v1.ChargeOrderPayRequest))
  95. }
  96. return interceptor(ctx, in, info, handler)
  97. }
  98. var _Garden_serviceDesc = grpc.ServiceDesc{
  99. ServiceName: "pb.service.Garden",
  100. HandlerType: (*GardenServer)(nil),
  101. Methods: []grpc.MethodDesc{
  102. {
  103. MethodName: "ChargeOrderPay",
  104. Handler: _Garden_ChargeOrderPay_Handler,
  105. },
  106. },
  107. Streams: []grpc.StreamDesc{},
  108. Metadata: "garden_service.proto",
  109. }