Files
klp-oa/klp-wms/src/main/java/com/klp/mapper/DrMillProcessRecipeMapper.java
wangyu 53a180787b 1完成酸轧轧辊调整
2完成双机架工艺规格串联
3完成双机架计划串联
4完成双机架wip快捷录入检索
5完成双机架实绩串联
2026-05-19 17:13:37 +08:00

15 lines
438 B
Java

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