65 lines
1.4 KiB
Java
Raw Normal View History

2024-04-11 12:56:00 +08:00
package com.sky.mapper;
2025-04-16 14:24:50 +08:00
import com.github.pagehelper.Page;
2024-04-11 12:56:00 +08:00
import com.sky.annotation.AutoFill;
import com.sky.dto.DishPageQueryDTO;
import com.sky.entity.Dish;
import com.sky.enumeration.OperationType;
import com.sky.vo.DishVO;
import org.apache.ibatis.annotations.Delete;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
import java.util.List;
import java.util.Map;
2024-04-11 12:56:00 +08:00
@Mapper
public interface DishMapper {
2025-04-16 14:24:50 +08:00
/**
* 插入菜品数据
*/
2024-04-11 12:56:00 +08:00
@AutoFill(OperationType.INSERT)
void insert(Dish dish);
2024-04-17 10:24:35 +08:00
/**
2025-04-16 14:24:50 +08:00
* 根据主键查询菜品
2024-04-17 10:24:35 +08:00
*/
2024-04-11 12:56:00 +08:00
@Select("select * from dish where id=#{id}")
2025-04-16 14:24:50 +08:00
Dish getById(Long id);
/**
* 根据主键删除菜品数据
*/
2024-04-11 12:56:00 +08:00
@Delete("delete from dish where id=#{id}")
void deleteById(Long id);
2025-04-16 14:24:50 +08:00
/**
* 根据id动态修改菜品数据
*/
2024-04-11 12:56:00 +08:00
@AutoFill(OperationType.UPDATE)
void update(Dish dish);
2025-04-16 14:24:50 +08:00
/**
* 动态条件查询菜品
*/
List<Dish> list(Dish dish);
/**
* 根据套餐id查询菜品
*/
2024-04-17 10:24:35 +08:00
@Select("select a.* from dish a left join setmeal_dish b on a.id = b.dish_id where b.setmeal_id = #{setmealId}")
List<Dish> getBySetmealId(Long setmealId);
2025-04-16 14:24:50 +08:00
/**
* 菜品分页查询
*/
Page<DishVO> pageQuery(DishPageQueryDTO dishPageQueryDTO);
/**
* 根据条件统计菜品数量
* @param map
* @return
*/
Integer countByMap(Map map);
2024-04-11 12:56:00 +08:00
}