批量删除菜品

This commit is contained in:
slhaf
2024-09-12 14:35:36 +08:00
parent b6c3de2165
commit 22e629b6e1
8 changed files with 186 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
package com.sky.mapper;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface SetmealDishMapper {
/**
* 根据菜品id查询套餐id
* @param ids
* @return
*/
List<Long> getSetmealIdsByDishIds(List<Long> ids);
}