package com.ruoyi.production.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.ruoyi.production.dto.ProductOrderMaterialDto; import com.ruoyi.production.dto.ProductStructureDto; import com.ruoyi.production.pojo.ProductOrderMaterial; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface ProductOrderMaterialMapper extends BaseMapper { IPage pickMaterial(@Param("id") Long ProductOrderId); List selectLeafNode(@Param("bomId") Long bomId); List selectByProductModelIds(@Param("ids") List productModelIds); }