czt
2024-11-27 416380997a1e0c473c85826c361ebe38d21169fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.fzzy.async.whhpjl.repository;
 
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultContract;
import com.fzzy.async.whhpjl.entity.Fz40WhjlInoutRecord;
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;
 
/**
 * 出入库信息
 *
 */
public interface Fz40ToWhjlSync1212Rep extends JpaRepository<Fz40WhjlInoutRecord, String> {
    /**
     * 出入库信息
     *
     * @return
     */
    @Query("from Fz40WhjlInoutRecord where deptId=:deptId ")
    List<Fz40WhjlInoutRecord> listApi1212(@Param("deptId") String deptId);
}