package com.fzzy.async.fzzy61.repository;
|
|
import com.fzzy.async.fzzy61.entity.Fz61Api1508;
|
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 czt
|
* @date 2024-01-12 09:55
|
*/
|
public interface Fzzy61Sync1508Rep extends JpaRepository<Fz61Api1508, String> {
|
|
/**
|
*
|
* @param start
|
* @param end
|
* @return
|
*/
|
@Query("from Fz61Api1508 where zhgxsj >=:start and zhgxsj <:end order by zhgxsj ")
|
List<Fz61Api1508> findDateByTime(@Param("start") Date start, @Param("end") Date end);
|
}
|