From 11430ae628f098654579811131abc522d679e870 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 22 九月 2025 17:04:42 +0800 Subject: [PATCH] 上海对农接口调整-增加自动上传 --- src/main/java/com/fzzy/async/fzzy61/repository/Fzzy61Sync1209Rep.java | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/repository/Fzzy61Sync1209Rep.java b/src/main/java/com/fzzy/async/fzzy61/repository/Fzzy61Sync1209Rep.java new file mode 100644 index 0000000..02c2ee3 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/repository/Fzzy61Sync1209Rep.java @@ -0,0 +1,26 @@ +package com.fzzy.async.fzzy61.repository; + +import com.fzzy.async.fzzy61.entity.Fz61InoutLossOver; +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.jpa.repository.Query; +import org.springframework.data.repository.query.Param; + +import java.util.Date; +import java.util.List; + +/** + * 鎹熸孩淇℃伅 + * + * @Author:YAN + */ +public interface Fzzy61Sync1209Rep extends JpaRepository<Fz61InoutLossOver, String> { + /** + * 鏍规嵁淇℃伅鑾峰彇鎹熸孩淇℃伅 + * + * @param start + * @param end + * @return + */ + @Query("from Fz61InoutLossOver where deptId=:deptId and updateTime >=:start and updateTime <:end order by updateTime ") + List<Fz61InoutLossOver> listMLossOver(@Param("deptId") String deptId, @Param("start") Date start, @Param("end") Date end); +} -- Gitblit v1.9.3