|
|
@@ -39,6 +39,7 @@ type ApiClient interface {
|
|
|
ShopLicenseList(ctx context.Context, in *ShopDetailRequest, opts ...grpc.CallOption) (*LicenseList, error)
|
|
|
ShopLicenseTypeMap(ctx context.Context, in *IdList, opts ...grpc.CallOption) (*LicenseTypeMapReply, error)
|
|
|
GetShopNavi(ctx context.Context, in *GetShopNaviRequest, opts ...grpc.CallOption) (*GetShopNaviReply, error)
|
|
|
+ GetShopNaviAll(ctx context.Context, in *GetShopNaviAllRequest, opts ...grpc.CallOption) (*GetShopNaviAllReply, error)
|
|
|
ShopGroupQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
|
|
|
ShopGroupAdd(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
|
|
|
ShopGroupEdit(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error)
|
|
|
@@ -324,6 +325,15 @@ func (c *apiClient) GetShopNavi(ctx context.Context, in *GetShopNaviRequest, opt
|
|
|
return out, nil
|
|
|
}
|
|
|
|
|
|
+func (c *apiClient) GetShopNaviAll(ctx context.Context, in *GetShopNaviAllRequest, opts ...grpc.CallOption) (*GetShopNaviAllReply, error) {
|
|
|
+ out := new(GetShopNaviAllReply)
|
|
|
+ err := c.cc.Invoke(ctx, "/base.Api/GetShopNaviAll", in, out, opts...)
|
|
|
+ if err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ return out, nil
|
|
|
+}
|
|
|
+
|
|
|
func (c *apiClient) ShopGroupQuery(ctx context.Context, in *StandardRequest, opts ...grpc.CallOption) (*StandardReply, error) {
|
|
|
out := new(StandardReply)
|
|
|
err := c.cc.Invoke(ctx, "/base.Api/ShopGroupQuery", in, out, opts...)
|
|
|
@@ -1303,6 +1313,7 @@ type ApiServer interface {
|
|
|
ShopLicenseList(context.Context, *ShopDetailRequest) (*LicenseList, error)
|
|
|
ShopLicenseTypeMap(context.Context, *IdList) (*LicenseTypeMapReply, error)
|
|
|
GetShopNavi(context.Context, *GetShopNaviRequest) (*GetShopNaviReply, error)
|
|
|
+ GetShopNaviAll(context.Context, *GetShopNaviAllRequest) (*GetShopNaviAllReply, error)
|
|
|
ShopGroupQuery(context.Context, *StandardRequest) (*StandardReply, error)
|
|
|
ShopGroupAdd(context.Context, *StandardRequest) (*StandardReply, error)
|
|
|
ShopGroupEdit(context.Context, *StandardRequest) (*StandardReply, error)
|
|
|
@@ -1477,6 +1488,9 @@ func (UnimplementedApiServer) ShopLicenseTypeMap(context.Context, *IdList) (*Lic
|
|
|
func (UnimplementedApiServer) GetShopNavi(context.Context, *GetShopNaviRequest) (*GetShopNaviReply, error) {
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetShopNavi not implemented")
|
|
|
}
|
|
|
+func (UnimplementedApiServer) GetShopNaviAll(context.Context, *GetShopNaviAllRequest) (*GetShopNaviAllReply, error) {
|
|
|
+ return nil, status.Errorf(codes.Unimplemented, "method GetShopNaviAll not implemented")
|
|
|
+}
|
|
|
func (UnimplementedApiServer) ShopGroupQuery(context.Context, *StandardRequest) (*StandardReply, error) {
|
|
|
return nil, status.Errorf(codes.Unimplemented, "method ShopGroupQuery not implemented")
|
|
|
}
|
|
|
@@ -2132,6 +2146,24 @@ func _Api_GetShopNavi_Handler(srv interface{}, ctx context.Context, dec func(int
|
|
|
return interceptor(ctx, in, info, handler)
|
|
|
}
|
|
|
|
|
|
+func _Api_GetShopNaviAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
+ in := new(GetShopNaviAllRequest)
|
|
|
+ if err := dec(in); err != nil {
|
|
|
+ return nil, err
|
|
|
+ }
|
|
|
+ if interceptor == nil {
|
|
|
+ return srv.(ApiServer).GetShopNaviAll(ctx, in)
|
|
|
+ }
|
|
|
+ info := &grpc.UnaryServerInfo{
|
|
|
+ Server: srv,
|
|
|
+ FullMethod: "/base.Api/GetShopNaviAll",
|
|
|
+ }
|
|
|
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
+ return srv.(ApiServer).GetShopNaviAll(ctx, req.(*GetShopNaviAllRequest))
|
|
|
+ }
|
|
|
+ return interceptor(ctx, in, info, handler)
|
|
|
+}
|
|
|
+
|
|
|
func _Api_ShopGroupQuery_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
in := new(StandardRequest)
|
|
|
if err := dec(in); err != nil {
|
|
|
@@ -4119,6 +4151,10 @@ var Api_ServiceDesc = grpc.ServiceDesc{
|
|
|
MethodName: "GetShopNavi",
|
|
|
Handler: _Api_GetShopNavi_Handler,
|
|
|
},
|
|
|
+ {
|
|
|
+ MethodName: "GetShopNaviAll",
|
|
|
+ Handler: _Api_GetShopNaviAll_Handler,
|
|
|
+ },
|
|
|
{
|
|
|
MethodName: "ShopGroupQuery",
|
|
|
Handler: _Api_ShopGroupQuery_Handler,
|