|
@@ -1,7 +1,7 @@
|
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.2.0
|
|
// - protoc-gen-go-grpc v1.2.0
|
|
-// - protoc v3.20.0--rc2
|
|
|
|
|
|
+// - protoc v3.15.5
|
|
// source: bxcore.proto
|
|
// source: bxcore.proto
|
|
|
|
|
|
package bxcore
|
|
package bxcore
|
|
@@ -26,6 +26,22 @@ type BxCoreClient interface {
|
|
GetSearchList(ctx context.Context, in *SearchReq, opts ...grpc.CallOption) (*SearchResp, error)
|
|
GetSearchList(ctx context.Context, in *SearchReq, opts ...grpc.CallOption) (*SearchResp, error)
|
|
//标讯搜索限制内容
|
|
//标讯搜索限制内容
|
|
SearchLimit(ctx context.Context, in *SearchLimitReq, opts ...grpc.CallOption) (*SearchLimitResp, error)
|
|
SearchLimit(ctx context.Context, in *SearchLimitReq, opts ...grpc.CallOption) (*SearchLimitResp, error)
|
|
|
|
+ // 列表数据参标信息接口
|
|
|
|
+ ParticipateShow(ctx context.Context, in *ParticipateShowReq, opts ...grpc.CallOption) (*ParticipateShowRes, error)
|
|
|
|
+ // 详情页参标信息接口
|
|
|
|
+ ParticipateInfo(ctx context.Context, in *ParticipateInfoReq, opts ...grpc.CallOption) (*ParticipateInfoRes, error)
|
|
|
|
+ // 投标状态更新
|
|
|
|
+ UpdateBidStatus(ctx context.Context, in *UpdateBidStatusReq, opts ...grpc.CallOption) (*UpdateBidStatusRes, error)
|
|
|
|
+ // 获取投标状态信息
|
|
|
|
+ ParticipateContent(ctx context.Context, in *ParticipateContentReq, opts ...grpc.CallOption) (*ParticipateContentRes, error)
|
|
|
|
+ // 参标操作记录
|
|
|
|
+ ParticipateRecords(ctx context.Context, in *ParticipateRecordsReq, opts ...grpc.CallOption) (*ParticipateRecordsRes, error)
|
|
|
|
+ // 当前部门/企业下参标人员信息
|
|
|
|
+ ParticipatePersons(ctx context.Context, in *ParticipatePersonsReq, opts ...grpc.CallOption) (*ParticipatePersonsRes, error)
|
|
|
|
+ // 参标设置信息
|
|
|
|
+ ParticipateSetUpInfo(ctx context.Context, in *ParticipateSetUpInfoReq, opts ...grpc.CallOption) (*ParticipateSetUpInfoRes, error)
|
|
|
|
+ // 项目参标 终止参标 划转等动作
|
|
|
|
+ ParticipateAction(ctx context.Context, in *ParticipateActionReq, opts ...grpc.CallOption) (*ParticipateActionRes, error)
|
|
}
|
|
}
|
|
|
|
|
|
type bxCoreClient struct {
|
|
type bxCoreClient struct {
|
|
@@ -54,6 +70,78 @@ func (c *bxCoreClient) SearchLimit(ctx context.Context, in *SearchLimitReq, opts
|
|
return out, nil
|
|
return out, nil
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func (c *bxCoreClient) ParticipateShow(ctx context.Context, in *ParticipateShowReq, opts ...grpc.CallOption) (*ParticipateShowRes, error) {
|
|
|
|
+ out := new(ParticipateShowRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateShow", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipateInfo(ctx context.Context, in *ParticipateInfoReq, opts ...grpc.CallOption) (*ParticipateInfoRes, error) {
|
|
|
|
+ out := new(ParticipateInfoRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateInfo", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) UpdateBidStatus(ctx context.Context, in *UpdateBidStatusReq, opts ...grpc.CallOption) (*UpdateBidStatusRes, error) {
|
|
|
|
+ out := new(UpdateBidStatusRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/UpdateBidStatus", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipateContent(ctx context.Context, in *ParticipateContentReq, opts ...grpc.CallOption) (*ParticipateContentRes, error) {
|
|
|
|
+ out := new(ParticipateContentRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateContent", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipateRecords(ctx context.Context, in *ParticipateRecordsReq, opts ...grpc.CallOption) (*ParticipateRecordsRes, error) {
|
|
|
|
+ out := new(ParticipateRecordsRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateRecords", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipatePersons(ctx context.Context, in *ParticipatePersonsReq, opts ...grpc.CallOption) (*ParticipatePersonsRes, error) {
|
|
|
|
+ out := new(ParticipatePersonsRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipatePersons", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipateSetUpInfo(ctx context.Context, in *ParticipateSetUpInfoReq, opts ...grpc.CallOption) (*ParticipateSetUpInfoRes, error) {
|
|
|
|
+ out := new(ParticipateSetUpInfoRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateSetUpInfo", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (c *bxCoreClient) ParticipateAction(ctx context.Context, in *ParticipateActionReq, opts ...grpc.CallOption) (*ParticipateActionRes, error) {
|
|
|
|
+ out := new(ParticipateActionRes)
|
|
|
|
+ err := c.cc.Invoke(ctx, "/bxcore.BxCore/ParticipateAction", in, out, opts...)
|
|
|
|
+ if err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ return out, nil
|
|
|
|
+}
|
|
|
|
+
|
|
// BxCoreServer is the server API for BxCore service.
|
|
// BxCoreServer is the server API for BxCore service.
|
|
// All implementations must embed UnimplementedBxCoreServer
|
|
// All implementations must embed UnimplementedBxCoreServer
|
|
// for forward compatibility
|
|
// for forward compatibility
|
|
@@ -62,6 +150,22 @@ type BxCoreServer interface {
|
|
GetSearchList(context.Context, *SearchReq) (*SearchResp, error)
|
|
GetSearchList(context.Context, *SearchReq) (*SearchResp, error)
|
|
//标讯搜索限制内容
|
|
//标讯搜索限制内容
|
|
SearchLimit(context.Context, *SearchLimitReq) (*SearchLimitResp, error)
|
|
SearchLimit(context.Context, *SearchLimitReq) (*SearchLimitResp, error)
|
|
|
|
+ // 列表数据参标信息接口
|
|
|
|
+ ParticipateShow(context.Context, *ParticipateShowReq) (*ParticipateShowRes, error)
|
|
|
|
+ // 详情页参标信息接口
|
|
|
|
+ ParticipateInfo(context.Context, *ParticipateInfoReq) (*ParticipateInfoRes, error)
|
|
|
|
+ // 投标状态更新
|
|
|
|
+ UpdateBidStatus(context.Context, *UpdateBidStatusReq) (*UpdateBidStatusRes, error)
|
|
|
|
+ // 获取投标状态信息
|
|
|
|
+ ParticipateContent(context.Context, *ParticipateContentReq) (*ParticipateContentRes, error)
|
|
|
|
+ // 参标操作记录
|
|
|
|
+ ParticipateRecords(context.Context, *ParticipateRecordsReq) (*ParticipateRecordsRes, error)
|
|
|
|
+ // 当前部门/企业下参标人员信息
|
|
|
|
+ ParticipatePersons(context.Context, *ParticipatePersonsReq) (*ParticipatePersonsRes, error)
|
|
|
|
+ // 参标设置信息
|
|
|
|
+ ParticipateSetUpInfo(context.Context, *ParticipateSetUpInfoReq) (*ParticipateSetUpInfoRes, error)
|
|
|
|
+ // 项目参标 终止参标 划转等动作
|
|
|
|
+ ParticipateAction(context.Context, *ParticipateActionReq) (*ParticipateActionRes, error)
|
|
mustEmbedUnimplementedBxCoreServer()
|
|
mustEmbedUnimplementedBxCoreServer()
|
|
}
|
|
}
|
|
|
|
|
|
@@ -75,6 +179,30 @@ func (UnimplementedBxCoreServer) GetSearchList(context.Context, *SearchReq) (*Se
|
|
func (UnimplementedBxCoreServer) SearchLimit(context.Context, *SearchLimitReq) (*SearchLimitResp, error) {
|
|
func (UnimplementedBxCoreServer) SearchLimit(context.Context, *SearchLimitReq) (*SearchLimitResp, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchLimit not implemented")
|
|
return nil, status.Errorf(codes.Unimplemented, "method SearchLimit not implemented")
|
|
}
|
|
}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateShow(context.Context, *ParticipateShowReq) (*ParticipateShowRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateShow not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateInfo(context.Context, *ParticipateInfoReq) (*ParticipateInfoRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateInfo not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) UpdateBidStatus(context.Context, *UpdateBidStatusReq) (*UpdateBidStatusRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method UpdateBidStatus not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateContent(context.Context, *ParticipateContentReq) (*ParticipateContentRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateContent not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateRecords(context.Context, *ParticipateRecordsReq) (*ParticipateRecordsRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateRecords not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipatePersons(context.Context, *ParticipatePersonsReq) (*ParticipatePersonsRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipatePersons not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateSetUpInfo(context.Context, *ParticipateSetUpInfoReq) (*ParticipateSetUpInfoRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateSetUpInfo not implemented")
|
|
|
|
+}
|
|
|
|
+func (UnimplementedBxCoreServer) ParticipateAction(context.Context, *ParticipateActionReq) (*ParticipateActionRes, error) {
|
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method ParticipateAction not implemented")
|
|
|
|
+}
|
|
func (UnimplementedBxCoreServer) mustEmbedUnimplementedBxCoreServer() {}
|
|
func (UnimplementedBxCoreServer) mustEmbedUnimplementedBxCoreServer() {}
|
|
|
|
|
|
// UnsafeBxCoreServer may be embedded to opt out of forward compatibility for this service.
|
|
// UnsafeBxCoreServer may be embedded to opt out of forward compatibility for this service.
|
|
@@ -124,6 +252,150 @@ func _BxCore_SearchLimit_Handler(srv interface{}, ctx context.Context, dec func(
|
|
return interceptor(ctx, in, info, handler)
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func _BxCore_ParticipateShow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateShowReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateShow(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateShow",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateShow(ctx, req.(*ParticipateShowReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipateInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateInfoReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateInfo(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateInfo",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateInfo(ctx, req.(*ParticipateInfoReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_UpdateBidStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(UpdateBidStatusReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).UpdateBidStatus(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/UpdateBidStatus",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).UpdateBidStatus(ctx, req.(*UpdateBidStatusReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipateContent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateContentReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateContent(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateContent",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateContent(ctx, req.(*ParticipateContentReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipateRecords_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateRecordsReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateRecords(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateRecords",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateRecords(ctx, req.(*ParticipateRecordsReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipatePersons_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipatePersonsReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipatePersons(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipatePersons",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipatePersons(ctx, req.(*ParticipatePersonsReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipateSetUpInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateSetUpInfoReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateSetUpInfo(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateSetUpInfo",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateSetUpInfo(ctx, req.(*ParticipateSetUpInfoReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func _BxCore_ParticipateAction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
+ in := new(ParticipateActionReq)
|
|
|
|
+ if err := dec(in); err != nil {
|
|
|
|
+ return nil, err
|
|
|
|
+ }
|
|
|
|
+ if interceptor == nil {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateAction(ctx, in)
|
|
|
|
+ }
|
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
|
+ Server: srv,
|
|
|
|
+ FullMethod: "/bxcore.BxCore/ParticipateAction",
|
|
|
|
+ }
|
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
|
+ return srv.(BxCoreServer).ParticipateAction(ctx, req.(*ParticipateActionReq))
|
|
|
|
+ }
|
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
|
+}
|
|
|
|
+
|
|
// BxCore_ServiceDesc is the grpc.ServiceDesc for BxCore service.
|
|
// BxCore_ServiceDesc is the grpc.ServiceDesc for BxCore service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
// and not to be introspected or modified (even as a copy)
|
|
@@ -139,6 +411,38 @@ var BxCore_ServiceDesc = grpc.ServiceDesc{
|
|
MethodName: "SearchLimit",
|
|
MethodName: "SearchLimit",
|
|
Handler: _BxCore_SearchLimit_Handler,
|
|
Handler: _BxCore_SearchLimit_Handler,
|
|
},
|
|
},
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateShow",
|
|
|
|
+ Handler: _BxCore_ParticipateShow_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateInfo",
|
|
|
|
+ Handler: _BxCore_ParticipateInfo_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "UpdateBidStatus",
|
|
|
|
+ Handler: _BxCore_UpdateBidStatus_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateContent",
|
|
|
|
+ Handler: _BxCore_ParticipateContent_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateRecords",
|
|
|
|
+ Handler: _BxCore_ParticipateRecords_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipatePersons",
|
|
|
|
+ Handler: _BxCore_ParticipatePersons_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateSetUpInfo",
|
|
|
|
+ Handler: _BxCore_ParticipateSetUpInfo_Handler,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ MethodName: "ParticipateAction",
|
|
|
|
+ Handler: _BxCore_ParticipateAction_Handler,
|
|
|
|
+ },
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "bxcore.proto",
|
|
Metadata: "bxcore.proto",
|