czt
2025-07-26 f495e422b1de10b1d1810158fca1c63f9b60fe45
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}