package org.jeecg.modules.lsw.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.jeecg.modules.lsw.entity.LswMaterialInventory;
|
import org.jeecg.modules.lsw.vo.LswMaterialInventoryVo;
|
import org.jeecg.modules.lsw.vo.MaterialInventoryStatisticsVO;
|
|
import java.util.List;
|
|
/**
|
* @Description: 物料库存信息
|
* @Author: jeecg-boot
|
* @Date: 2025-06-30
|
* @Version: V1.0
|
*/
|
public interface LswMaterialInventoryMapper extends BaseMapper<LswMaterialInventory> {
|
|
List<LswMaterialInventoryVo> selectLineSideMaterialInventoryByMaterialNumber(@Param("materialNumberList") List<String> bomMaterialNumberList,
|
@Param("factoryId") String factoryId);
|
|
/**
|
* 库存统计
|
* @param materialId
|
* @return
|
*/
|
List<MaterialInventoryStatisticsVO> statisticsInventory(@Param("materialId") String materialId);
|
}
|