package org.jeecg.modules.lsw.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.lsw.entity.LswMaterialInventory;
|
import org.jeecg.modules.lsw.vo.LswMaterialInventoryVo;
|
|
import java.util.List;
|
|
/**
|
* @Description: 物料库存信息
|
* @Author: jeecg-boot
|
* @Date: 2025-06-30
|
* @Version: V1.0
|
*/
|
public interface ILswMaterialInventoryService extends IService<LswMaterialInventory> {
|
|
/**
|
* 通过主表id查询子表数据
|
*
|
* @param mainId 主表id
|
* @return List<LswMaterialInventory>
|
*/
|
public List<LswMaterialInventory> selectByMainId(String mainId);
|
/** 通过物料编码和线边库id查询物料库存 */
|
List<LswMaterialInventoryVo> selectLineSideMaterialInventoryByMaterialNumber(List<String> bomMaterialNumberList, String factoryId);
|
}
|