package com.klp.mapper; import com.klp.domain.DrMillProcessRecipe; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface DrMillProcessRecipeMapper { List selectList(DrMillProcessRecipe query); DrMillProcessRecipe selectById(Long recipeId); int insert(DrMillProcessRecipe recipe); int update(DrMillProcessRecipe recipe); int deleteBatchByIds(Long[] ids); }