| package com.fzzy.async.whhpjl.repository; | 
|   | 
| import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultContract; | 
| import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultInoutRecord; | 
| 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 Fz40ToWhjlSync1214Rep extends JpaRepository<Fz40WhjlDefaultInoutRecord, String> { | 
|     /** | 
|      * 出入库记录 | 
|      * | 
|      * @return | 
|      */ | 
|     @Query("from Fz40WhjlDefaultInoutRecord where companyId=:companyId ") | 
|     List<Fz40WhjlDefaultInoutRecord> listApi1214(@Param("companyId") String companyId); | 
| } |