从接口实现销售价每个客户不同的价格

This commit is contained in:
季圣华
2023-06-11 18:47:07 +08:00
parent d59ace2149
commit 04f6fdfd40
4 changed files with 43 additions and 1 deletions

View File

@@ -233,4 +233,10 @@ public interface DepotItemMapperEx {
BigDecimal getCurrentStockByParam(
@Param("depotId") Long depotId,
@Param("mId") Long mId);
BigDecimal getLastUnitPriceByParam(
@Param("organId") Long organId,
@Param("meId") Long meId,
@Param("type") String type,
@Param("subType") String subType);
}