批量删除套餐、菜品起售停售(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

@@ -67,5 +67,5 @@ public interface DishMapper {
* @return
*/
@Select("select * from dish where category_id = #{categoryId}")
List<Dish> selectByCategoryId(String categoryId);
List<Dish> selectByCategoryId(Long categoryId);
}