| package com.fzzy.async.whhpjl.repository; | 
|   | 
| import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultContract; | 
| import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultCustomer; | 
| import org.springframework.data.jpa.repository.JpaRepository; | 
| import org.springframework.data.jpa.repository.Query; | 
| import org.springframework.data.repository.query.Param; | 
|   | 
| import java.util.List; | 
|   | 
| /** | 
|  * 合同信息 | 
|  * | 
|  * @Author:YAN | 
|  */ | 
| public interface Fz40ToWhjlSync1207Rep extends JpaRepository<Fz40WhjlDefaultContract, String> { | 
|     /** | 
|      * 合同信息 | 
|      * | 
|      * @return | 
|      */ | 
|     @Query("from Fz40WhjlDefaultContract where companyId=:companyId ") | 
|     List<Fz40WhjlDefaultContract> listApi1207(@Param("companyId") String companyId); | 
| } |