From 069c3ea2792899256f46c44ff2bd497d91f91a4d Mon Sep 17 00:00:00 2001 From: CZT <czt18638530771@163.com> Date: 星期五, 08 三月 2024 16:03:30 +0800 Subject: [PATCH] 优化出入库数据同步的必填项 --- src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1208Rep.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1208Rep.java b/src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1208Rep.java index c87ecb1..ee84196 100644 --- a/src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1208Rep.java +++ b/src/main/java/com/fzzy/async/fzzy40/repository/Fzzy40Sync1208Rep.java @@ -18,6 +18,6 @@ * * @return */ - @Query("from Fz40DepotStore where deptId=:deptId and createDate >=:start and createDate <:end order by createDate ") + @Query("from Fz40DepotStore where deptId=:deptId and updateDate >=:start and updateDate <:end order by updateDate ") List<Fz40DepotStore> listDepot(@Param("deptId") String deptId, @Param("start") Date start, @Param("end") Date end); } -- Gitblit v1.9.3