This commit is contained in:
2025-06-12 10:20:26 +08:00
parent 96d537c044
commit b71e718308
40 changed files with 1961 additions and 108 deletions

View File

@@ -36,7 +36,8 @@ func NewMenuService(
}
func (s *menuService) Create(ctx context.Context, req *system.Menu) error {
return s.repo.Create(ctx, req)
_, err := s.repo.Create(ctx, req)
return err
}
func (s *menuService) Update(ctx context.Context, req *system.Menu) error {