YYC
2025-09-28 14605ba25b4d950df29ac7a44bf65ccc3472ffff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.fzzy.async.fzzy61.repository;
 
import com.fzzy.async.fzzy61.entity.Fz61InoutVarietyChange;
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 Fzzy61Sync1210Rep extends JpaRepository<Fz61InoutVarietyChange, String> {
    @Query("from Fz61InoutVarietyChange where deptId=:deptId and updateTime >=:start and updateTime <:end order by updateTime ")
    List<Fz61InoutVarietyChange> listVarietyChange(@Param("deptId") String deptId, @Param("start") Date start, @Param("end") Date end);
}