批量删除套餐、菜品起售停售(TODO)

This commit is contained in:
slhaf
2024-09-12 20:55:15 +08:00
parent e223fbb1a8
commit a65c9e0c69
11 changed files with 115 additions and 5 deletions

View File

@@ -49,5 +49,12 @@ public interface DishService {
* @param categoryId
* @return
*/
List<Dish> selectByCategoryId(String categoryId);
List<Dish> selectByCategoryId(Long categoryId);
/**
* 菜品起售停售
* @param status
* @param id
*/
void startOrStop(Integer status, Long id);
}