| | |
| | | import org.jeecg.modules.lsw.entity.LswMaterialInventory; |
| | | import org.jeecg.modules.lsw.vo.LswMaterialInventoryVo; |
| | | import org.jeecg.modules.lsw.vo.MaterialInventoryStatisticsVO; |
| | | import org.jeecg.modules.lsw.vo.MaterialInventoryVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | public interface LswMaterialInventoryMapper extends BaseMapper<LswMaterialInventory> { |
| | | |
| | | List<LswMaterialInventoryVo> selectLineSideMaterialInventoryByMaterialNumber(@Param("materialNumberList") List<String> bomMaterialNumberList, |
| | | @Param("factoryId") String factoryId); |
| | | @Param("factoryId") String factoryId, |
| | | @Param("heatFlag") String heatFlag); |
| | | |
| | | /** |
| | | * 库存统计 |
| | |
| | | * @return |
| | | */ |
| | | List<MaterialInventoryStatisticsVO> statisticsInventory(@Param("materialId") String materialId); |
| | | |
| | | /** |
| | | * 查询物料库存 |
| | | * @param warehouseId |
| | | * @param materialCategoryList |
| | | * @return |
| | | */ |
| | | List<MaterialInventoryVO> queryMaterialInventory(@Param("warehouseId") String warehouseId, @Param("materialCategoryList") List<String> materialCategoryList); |
| | | } |