给进销存统计报表另外增加查询接口

This commit is contained in:
jishenghua
2024-07-14 23:14:13 +08:00
parent 3533736aa8
commit b0380732ae
4 changed files with 165 additions and 13 deletions

View File

@@ -60,14 +60,14 @@ public interface DepotItemMapperEx {
List<DepotItemVo4WithInfoEx> getBillDetailListByIds(
@Param("idList") List<Long> idList);
List<DepotItemVo4WithInfoEx> findByAll(
List<DepotItemVo4WithInfoEx> getInOutStock(
@Param("materialParam") String materialParam,
@Param("categoryIdList") List<Long> categoryIdList,
@Param("endTime") String endTime,
@Param("offset") Integer offset,
@Param("rows") Integer rows);
int findByAllCount(
int getInOutStockCount(
@Param("materialParam") String materialParam,
@Param("categoryIdList") List<Long> categoryIdList,
@Param("endTime") String endTime);