套餐相关接口

This commit is contained in:
slhaf
2024-09-13 13:18:22 +08:00
parent 1e2aec636a
commit add28bfa5d
10 changed files with 161 additions and 7 deletions

View File

@@ -68,4 +68,6 @@ public interface DishMapper {
*/
@Select("select * from dish where category_id = #{categoryId}")
List<Dish> selectByCategoryId(Long categoryId);
List<Dish> selectByDishIdsAndStatusDisable(List<Long> dishIds);
}