From 954480166aad6d24c9e9889906a0edf762f0da2a Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 10 二月 2025 16:32:56 +0800 Subject: [PATCH] 优化库存同步 --- src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1208Rep.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1208Rep.java b/src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1208Rep.java index 001532d..4981a50 100644 --- a/src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1208Rep.java +++ b/src/main/java/com/fzzy/async/fzzy35/repository/Fzzy35Sync1208Rep.java @@ -20,4 +20,12 @@ */ @Query("from Fz35DepotStore where deptId=:deptId and createDate >=:start and createDate <:end order by createDate ") List<Fz35DepotStore> listDepot(@Param("deptId") String deptId, @Param("start") Date start, @Param("end") Date end); + + /** + * 鏍规嵁淇℃伅鑾峰彇浠撳簱淇℃伅 + * + * @return + */ + @Query("from Fz35DepotStore where createDate >=:start and createDate <:end order by createDate ") + List<Fz35DepotStore> listDepot(@Param("start") Date start, @Param("end") Date end); } -- Gitblit v1.9.3