2026-08-09 10:43:45 +08:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2026-08-09 15:10:19 +08:00
// - protoc-gen-go-grpc v1.6.2
2026-08-09 18:40:36 +08:00
// - protoc v7.35.1
2026-08-09 15:10:19 +08:00
// source: module/ec/mall/proto/category.proto
2026-08-09 10:43:45 +08:00
package mall
import (
2026-08-09 15:10:19 +08:00
protobuf "bsm/full/protobuf"
2026-08-09 10:43:45 +08:00
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
const (
Category_Fetch_FullMethodName = "/mall.Category/Fetch"
Category_Create_FullMethodName = "/mall.Category/Create"
Category_Delete_FullMethodName = "/mall.Category/Delete"
Category_Modify_FullMethodName = "/mall.Category/Modify"
)
// CategoryClient is the client API for Category service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
//
// Store(店铺)微服务-分类
type CategoryClient interface {
2026-08-09 15:10:19 +08:00
// 获取分类数据
2026-08-09 10:43:45 +08:00
Fetch ( ctx context . Context , in * CategoryFetchRequest , opts ... grpc . CallOption ) ( * CategoryReply , error )
2026-08-09 15:10:19 +08:00
// 添加分类
Create ( ctx context . Context , in * CategoryItem , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error )
// 删除分类
Delete ( ctx context . Context , in * protobuf . IdentRequest , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error )
// 修改分类
Modify ( ctx context . Context , in * CategoryItem , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error )
2026-08-09 10:43:45 +08:00
}
type categoryClient struct {
cc grpc . ClientConnInterface
}
func NewCategoryClient ( cc grpc . ClientConnInterface ) CategoryClient {
return & categoryClient { cc }
}
func ( c * categoryClient ) Fetch ( ctx context . Context , in * CategoryFetchRequest , opts ... grpc . CallOption ) ( * CategoryReply , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( CategoryReply )
err := c . cc . Invoke ( ctx , Category_Fetch_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2026-08-09 15:10:19 +08:00
func ( c * categoryClient ) Create ( ctx context . Context , in * CategoryItem , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error ) {
2026-08-09 10:43:45 +08:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2026-08-09 15:10:19 +08:00
out := new ( protobuf . IdentityStatusReply )
2026-08-09 10:43:45 +08:00
err := c . cc . Invoke ( ctx , Category_Create_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2026-08-09 15:10:19 +08:00
func ( c * categoryClient ) Delete ( ctx context . Context , in * protobuf . IdentRequest , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error ) {
2026-08-09 10:43:45 +08:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2026-08-09 15:10:19 +08:00
out := new ( protobuf . IdentityStatusReply )
2026-08-09 10:43:45 +08:00
err := c . cc . Invoke ( ctx , Category_Delete_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2026-08-09 15:10:19 +08:00
func ( c * categoryClient ) Modify ( ctx context . Context , in * CategoryItem , opts ... grpc . CallOption ) ( * protobuf . IdentityStatusReply , error ) {
2026-08-09 10:43:45 +08:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2026-08-09 15:10:19 +08:00
out := new ( protobuf . IdentityStatusReply )
2026-08-09 10:43:45 +08:00
err := c . cc . Invoke ( ctx , Category_Modify_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
// CategoryServer is the server API for Category service.
2026-08-09 15:10:19 +08:00
// All implementations should embed UnimplementedCategoryServer
2026-08-09 10:43:45 +08:00
// for forward compatibility.
//
// Store(店铺)微服务-分类
type CategoryServer interface {
2026-08-09 15:10:19 +08:00
// 获取分类数据
2026-08-09 10:43:45 +08:00
Fetch ( context . Context , * CategoryFetchRequest ) ( * CategoryReply , error )
2026-08-09 15:10:19 +08:00
// 添加分类
Create ( context . Context , * CategoryItem ) ( * protobuf . IdentityStatusReply , error )
// 删除分类
Delete ( context . Context , * protobuf . IdentRequest ) ( * protobuf . IdentityStatusReply , error )
// 修改分类
Modify ( context . Context , * CategoryItem ) ( * protobuf . IdentityStatusReply , error )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
// UnimplementedCategoryServer should be embedded to have
2026-08-09 10:43:45 +08:00
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedCategoryServer struct { }
func ( UnimplementedCategoryServer ) Fetch ( context . Context , * CategoryFetchRequest ) ( * CategoryReply , error ) {
2026-08-09 15:10:19 +08:00
return nil , status . Error ( codes . Unimplemented , "method Fetch not implemented" )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
func ( UnimplementedCategoryServer ) Create ( context . Context , * CategoryItem ) ( * protobuf . IdentityStatusReply , error ) {
return nil , status . Error ( codes . Unimplemented , "method Create not implemented" )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
func ( UnimplementedCategoryServer ) Delete ( context . Context , * protobuf . IdentRequest ) ( * protobuf . IdentityStatusReply , error ) {
return nil , status . Error ( codes . Unimplemented , "method Delete not implemented" )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
func ( UnimplementedCategoryServer ) Modify ( context . Context , * CategoryItem ) ( * protobuf . IdentityStatusReply , error ) {
return nil , status . Error ( codes . Unimplemented , "method Modify not implemented" )
2026-08-09 10:43:45 +08:00
}
2026-08-09 15:10:19 +08:00
func ( UnimplementedCategoryServer ) testEmbeddedByValue ( ) { }
2026-08-09 10:43:45 +08:00
// UnsafeCategoryServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to CategoryServer will
// result in compilation errors.
type UnsafeCategoryServer interface {
mustEmbedUnimplementedCategoryServer ( )
}
func RegisterCategoryServer ( s grpc . ServiceRegistrar , srv CategoryServer ) {
2026-08-09 15:10:19 +08:00
// If the following call panics, it indicates UnimplementedCategoryServer was
2026-08-09 10:43:45 +08:00
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t , ok := srv . ( interface { testEmbeddedByValue ( ) } ) ; ok {
t . testEmbeddedByValue ( )
}
s . RegisterService ( & Category_ServiceDesc , srv )
}
func _Category_Fetch_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CategoryFetchRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( CategoryServer ) . Fetch ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Category_Fetch_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( CategoryServer ) . Fetch ( ctx , req . ( * CategoryFetchRequest ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Category_Create_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CategoryItem )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( CategoryServer ) . Create ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Category_Create_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( CategoryServer ) . Create ( ctx , req . ( * CategoryItem ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Category_Delete_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
2026-08-09 15:10:19 +08:00
in := new ( protobuf . IdentRequest )
2026-08-09 10:43:45 +08:00
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( CategoryServer ) . Delete ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Category_Delete_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2026-08-09 15:10:19 +08:00
return srv . ( CategoryServer ) . Delete ( ctx , req . ( * protobuf . IdentRequest ) )
2026-08-09 10:43:45 +08:00
}
return interceptor ( ctx , in , info , handler )
}
func _Category_Modify_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( CategoryItem )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( CategoryServer ) . Modify ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : Category_Modify_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( CategoryServer ) . Modify ( ctx , req . ( * CategoryItem ) )
}
return interceptor ( ctx , in , info , handler )
}
// Category_ServiceDesc is the grpc.ServiceDesc for Category service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Category_ServiceDesc = grpc . ServiceDesc {
ServiceName : "mall.Category" ,
HandlerType : ( * CategoryServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Fetch" ,
Handler : _Category_Fetch_Handler ,
} ,
{
MethodName : "Create" ,
Handler : _Category_Create_Handler ,
} ,
{
MethodName : "Delete" ,
Handler : _Category_Delete_Handler ,
} ,
{
MethodName : "Modify" ,
Handler : _Category_Modify_Handler ,
} ,
} ,
Streams : [ ] grpc . StreamDesc { } ,
2026-08-09 15:10:19 +08:00
Metadata : "module/ec/mall/proto/category.proto" ,
2026-08-09 10:43:45 +08:00
}