liyong
2 天以前 88ae1e650fc2fc30928edfe8f3cc39108d8d1ccd
src/main/java/com/ruoyi/production/mapper/ProductionBomStructureMapper.java
@@ -1,8 +1,12 @@
package com.ruoyi.production.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.production.bean.vo.ProductionBomStructureVo;
import com.ruoyi.production.pojo.ProductionBomStructure;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * <p>
@@ -15,4 +19,12 @@
@Mapper
public interface ProductionBomStructureMapper extends BaseMapper<ProductionBomStructure> {
    List<ProductionBomStructureVo> listByBomId(@Param("bomId") Long bomId);
    /**
     * 领料bom
     * @param bomId
     * @return
     */
    List<ProductionBomStructureVo> pickByBomId(@Param("bomId") Long bomId);
}