czt
2025-03-18 451f8ceb451519c029a0bcd0373b7b493e6265fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.fzzy.async.fzzy40.repository;
 
import com.fzzy.async.fzzy40.entity.Fz40AssetsLiability;
import com.fzzy.async.fzzy40.entity.Fz40InoutPlan;
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 Fzzy40Sync1501Rep extends JpaRepository<Fz40AssetsLiability, String> {
 
    /**
     *
     * @param start
     * @param end
     * @return
     */
    @Query("from Fz40AssetsLiability where zhgxsj >=:start and zhgxsj <:end order by zhgxsj ")
    List<Fz40AssetsLiability> findDateByTime(@Param("start") Date start, @Param("end") Date end);
 
}