feat: product item

This commit is contained in:
zzw
2026-08-07 10:51:47 +08:00
52 changed files with 3562 additions and 1159 deletions
+5
View File
@@ -32,3 +32,8 @@ func (s *ProductServer) Edit(ctx context.Context, in *product.EditReq) (*product
l := logic.NewEditLogic(ctx, s.svcCtx)
return l.Edit(in)
}
func (s *ProductServer) Items(ctx context.Context, in *product.ItemsReq) (*product.ItemsResp, error) {
l := logic.NewItemsLogic(ctx, s.svcCtx)
return l.Items(in)
}