DeleteMenu 删除菜单
(ctx context.Context, id int)
| 50 | |
| 51 | // DeleteMenu 删除菜单 |
| 52 | func (m *menuRepository) DeleteMenu(ctx context.Context, id int) error { |
| 53 | return m.dao.DeleteMenu(ctx, id) |
| 54 | } |
| 55 | |
| 56 | // ListMenus 分页获取菜单列表 |
| 57 | func (m *menuRepository) ListMenus(ctx context.Context, page, pageSize int) ([]*domain.Menu, int, error) { |
nothing calls this directly
no test coverage detected