新增套餐、套餐分页查询、根据分类id查询菜品

This commit is contained in:
slhaf
2024-09-12 20:02:21 +08:00
parent 5419e321c8
commit e223fbb1a8
19 changed files with 209 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
package com.sky.mapper;
import com.sky.entity.SetmealDish;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@@ -12,4 +13,6 @@ public interface SetmealDishMapper {
* @return
*/
List<Long> getSetmealIdsByDishIds(List<Long> ids);
void insertBatch(List<SetmealDish> setmealDishes);
}