苍穹外卖--菜品管理-删除功能实现

This commit is contained in:
2025-11-11 14:29:45 +08:00
parent 6cf6f4ef41
commit 85cd67f345
9 changed files with 121 additions and 0 deletions

View File

@@ -12,4 +12,10 @@ public interface DishFlavorMapper {
* @param flavors
*/
void insertBath(List<DishFlavor> flavors);
/**
* 菜品口味的批量删除
* @param ids
*/
void deleteBath(List<Long> ids);
}