新增接口,根据订单推荐采购计划

This commit is contained in:
JR
2025-07-18 17:23:51 +08:00
parent 58bdd266dc
commit 043b0e8b79
12 changed files with 112 additions and 4 deletions

View File

@@ -4,6 +4,8 @@ import com.klp.domain.WmsProductBom;
import com.klp.domain.vo.WmsProductBomVo;
import com.klp.common.core.mapper.BaseMapperPlus;
import java.util.List;
/**
* 产品BOM产品-原材料清单Mapper接口
*
@@ -12,4 +14,5 @@ import com.klp.common.core.mapper.BaseMapperPlus;
*/
public interface WmsProductBomMapper extends BaseMapperPlus<WmsProductBomMapper, WmsProductBom, WmsProductBomVo> {
List<WmsProductBom> listByProductId(Long productId);
}

View File

@@ -4,6 +4,8 @@ import com.klp.domain.WmsStock;
import com.klp.domain.vo.WmsStockVo;
import com.klp.common.core.mapper.BaseMapperPlus;
import java.math.BigDecimal;
/**
* 库存:原材料/产品与库区/库位的存放关系Mapper接口
*
@@ -12,4 +14,5 @@ import com.klp.common.core.mapper.BaseMapperPlus;
*/
public interface WmsStockMapper extends BaseMapperPlus<WmsStockMapper, WmsStock, WmsStockVo> {
BigDecimal getStockByItemId(Long rawMaterialId);
}