| 对比新文件 |
| | |
| | | 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> |
| | | * 鐢熶骇璁㈠崟BOM浜у搧缁撴瀯 Mapper 鎺ュ彛 |
| | | * </p> |
| | | * |
| | | * @author 鑺杞欢锛堟睙鑻忥級鏈夐檺鍏徃 |
| | | * @since 2026-04-21 03:55:52 |
| | | */ |
| | | @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); |
| | | } |