company_service.pb.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: company_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-garden/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("company_service.proto", fileDescriptor_cfe012e92534f5dd)
  26. }
  27. var fileDescriptor_cfe012e92534f5dd = []byte{
  28. // 194 bytes of a gzipped FileDescriptorProto
  29. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4d, 0xce, 0xcf, 0x2d,
  30. 0x48, 0xcc, 0xab, 0x8c, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f,
  31. 0xc9, 0x17, 0xe2, 0x2a, 0x48, 0xd2, 0x83, 0x8a, 0x48, 0x09, 0x94, 0x19, 0xea, 0x43, 0x55, 0x41,
  32. 0x64, 0x8d, 0xe6, 0x32, 0x71, 0xb1, 0x3b, 0x43, 0x44, 0x84, 0x9c, 0xb9, 0xb8, 0xa1, 0x4c, 0xcf,
  33. 0xbc, 0xb4, 0x7c, 0x21, 0x49, 0xbd, 0x82, 0xa4, 0xf8, 0x32, 0x43, 0x3d, 0x24, 0xb1, 0xa0, 0xd4,
  34. 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x29, 0x71, 0x6c, 0x52, 0x05, 0x39, 0x95, 0x4a, 0x0c, 0x42, 0x29,
  35. 0x5c, 0x62, 0x50, 0x51, 0xff, 0xa4, 0xac, 0xe0, 0x92, 0xc4, 0x92, 0xcc, 0xe2, 0x92, 0xcc, 0xe4,
  36. 0xe0, 0xd4, 0x12, 0x21, 0x15, 0x54, 0x4d, 0x68, 0xd2, 0x30, 0xa3, 0x95, 0x08, 0xa8, 0x82, 0xd8,
  37. 0x92, 0xce, 0x25, 0x0e, 0x55, 0xe0, 0x92, 0x9a, 0x98, 0x83, 0x62, 0x8d, 0x2a, 0xaa, 0x01, 0xe8,
  38. 0xf2, 0x30, 0x7b, 0x94, 0x09, 0x29, 0x03, 0x5b, 0xe4, 0x24, 0x12, 0x25, 0x54, 0x50, 0x94, 0x5f,
  39. 0x90, 0x5a, 0x54, 0x52, 0xa9, 0x9b, 0x9e, 0x58, 0x94, 0x92, 0x9a, 0xa7, 0x5f, 0x90, 0x94, 0xc4,
  40. 0x06, 0x0e, 0x3c, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0xa0, 0x44, 0x6b, 0x73, 0x01,
  41. 0x00, 0x00,
  42. }
  43. // Reference imports to suppress errors if they are not otherwise used.
  44. var _ context.Context
  45. var _ grpc.ClientConnInterface
  46. // This is a compile-time assertion to ensure that this generated file
  47. // is compatible with the grpc package it is being compiled against.
  48. const _ = grpc.SupportPackageIsVersion6
  49. // CompanyClient is the client API for Company service.
  50. //
  51. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  52. type CompanyClient interface {
  53. //
  54. CompanyInfo(ctx context.Context, in *v1.CompanyInfoRequest, opts ...grpc.CallOption) (*v1.CompanyInfoReply, error)
  55. CompanyObjStatisticSet(ctx context.Context, in *v1.CompanyObjStatisticSetRequest, opts ...grpc.CallOption) (*v1.CompanyObjStatisticSetReply, error)
  56. CompanyDealStatisticSet(ctx context.Context, in *v1.CompanyDealStatisticSetRequest, opts ...grpc.CallOption) (*v1.CompanyDealStatisticSetReply, error)
  57. }
  58. type companyClient struct {
  59. cc grpc.ClientConnInterface
  60. }
  61. func NewCompanyClient(cc grpc.ClientConnInterface) CompanyClient {
  62. return &companyClient{cc}
  63. }
  64. func (c *companyClient) CompanyInfo(ctx context.Context, in *v1.CompanyInfoRequest, opts ...grpc.CallOption) (*v1.CompanyInfoReply, error) {
  65. out := new(v1.CompanyInfoReply)
  66. err := c.cc.Invoke(ctx, "/pb.service.Company/CompanyInfo", in, out, opts...)
  67. if err != nil {
  68. return nil, err
  69. }
  70. return out, nil
  71. }
  72. func (c *companyClient) CompanyObjStatisticSet(ctx context.Context, in *v1.CompanyObjStatisticSetRequest, opts ...grpc.CallOption) (*v1.CompanyObjStatisticSetReply, error) {
  73. out := new(v1.CompanyObjStatisticSetReply)
  74. err := c.cc.Invoke(ctx, "/pb.service.Company/CompanyObjStatisticSet", in, out, opts...)
  75. if err != nil {
  76. return nil, err
  77. }
  78. return out, nil
  79. }
  80. func (c *companyClient) CompanyDealStatisticSet(ctx context.Context, in *v1.CompanyDealStatisticSetRequest, opts ...grpc.CallOption) (*v1.CompanyDealStatisticSetReply, error) {
  81. out := new(v1.CompanyDealStatisticSetReply)
  82. err := c.cc.Invoke(ctx, "/pb.service.Company/CompanyDealStatisticSet", in, out, opts...)
  83. if err != nil {
  84. return nil, err
  85. }
  86. return out, nil
  87. }
  88. // CompanyServer is the server API for Company service.
  89. type CompanyServer interface {
  90. //
  91. CompanyInfo(context.Context, *v1.CompanyInfoRequest) (*v1.CompanyInfoReply, error)
  92. CompanyObjStatisticSet(context.Context, *v1.CompanyObjStatisticSetRequest) (*v1.CompanyObjStatisticSetReply, error)
  93. CompanyDealStatisticSet(context.Context, *v1.CompanyDealStatisticSetRequest) (*v1.CompanyDealStatisticSetReply, error)
  94. }
  95. // UnimplementedCompanyServer can be embedded to have forward compatible implementations.
  96. type UnimplementedCompanyServer struct {
  97. }
  98. func (*UnimplementedCompanyServer) CompanyInfo(ctx context.Context, req *v1.CompanyInfoRequest) (*v1.CompanyInfoReply, error) {
  99. return nil, status.Errorf(codes.Unimplemented, "method CompanyInfo not implemented")
  100. }
  101. func (*UnimplementedCompanyServer) CompanyObjStatisticSet(ctx context.Context, req *v1.CompanyObjStatisticSetRequest) (*v1.CompanyObjStatisticSetReply, error) {
  102. return nil, status.Errorf(codes.Unimplemented, "method CompanyObjStatisticSet not implemented")
  103. }
  104. func (*UnimplementedCompanyServer) CompanyDealStatisticSet(ctx context.Context, req *v1.CompanyDealStatisticSetRequest) (*v1.CompanyDealStatisticSetReply, error) {
  105. return nil, status.Errorf(codes.Unimplemented, "method CompanyDealStatisticSet not implemented")
  106. }
  107. func RegisterCompanyServer(s *grpc.Server, srv CompanyServer) {
  108. s.RegisterService(&_Company_serviceDesc, srv)
  109. }
  110. func _Company_CompanyInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  111. in := new(v1.CompanyInfoRequest)
  112. if err := dec(in); err != nil {
  113. return nil, err
  114. }
  115. if interceptor == nil {
  116. return srv.(CompanyServer).CompanyInfo(ctx, in)
  117. }
  118. info := &grpc.UnaryServerInfo{
  119. Server: srv,
  120. FullMethod: "/pb.service.Company/CompanyInfo",
  121. }
  122. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  123. return srv.(CompanyServer).CompanyInfo(ctx, req.(*v1.CompanyInfoRequest))
  124. }
  125. return interceptor(ctx, in, info, handler)
  126. }
  127. func _Company_CompanyObjStatisticSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  128. in := new(v1.CompanyObjStatisticSetRequest)
  129. if err := dec(in); err != nil {
  130. return nil, err
  131. }
  132. if interceptor == nil {
  133. return srv.(CompanyServer).CompanyObjStatisticSet(ctx, in)
  134. }
  135. info := &grpc.UnaryServerInfo{
  136. Server: srv,
  137. FullMethod: "/pb.service.Company/CompanyObjStatisticSet",
  138. }
  139. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  140. return srv.(CompanyServer).CompanyObjStatisticSet(ctx, req.(*v1.CompanyObjStatisticSetRequest))
  141. }
  142. return interceptor(ctx, in, info, handler)
  143. }
  144. func _Company_CompanyDealStatisticSet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  145. in := new(v1.CompanyDealStatisticSetRequest)
  146. if err := dec(in); err != nil {
  147. return nil, err
  148. }
  149. if interceptor == nil {
  150. return srv.(CompanyServer).CompanyDealStatisticSet(ctx, in)
  151. }
  152. info := &grpc.UnaryServerInfo{
  153. Server: srv,
  154. FullMethod: "/pb.service.Company/CompanyDealStatisticSet",
  155. }
  156. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  157. return srv.(CompanyServer).CompanyDealStatisticSet(ctx, req.(*v1.CompanyDealStatisticSetRequest))
  158. }
  159. return interceptor(ctx, in, info, handler)
  160. }
  161. var _Company_serviceDesc = grpc.ServiceDesc{
  162. ServiceName: "pb.service.Company",
  163. HandlerType: (*CompanyServer)(nil),
  164. Methods: []grpc.MethodDesc{
  165. {
  166. MethodName: "CompanyInfo",
  167. Handler: _Company_CompanyInfo_Handler,
  168. },
  169. {
  170. MethodName: "CompanyObjStatisticSet",
  171. Handler: _Company_CompanyObjStatisticSet_Handler,
  172. },
  173. {
  174. MethodName: "CompanyDealStatisticSet",
  175. Handler: _Company_CompanyDealStatisticSet_Handler,
  176. },
  177. },
  178. Streams: []grpc.StreamDesc{},
  179. Metadata: "company_service.proto",
  180. }