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 { /** * 出入库信息 * * @return */ @Query("from Fz40WhjlInoutRecord where deptId=:deptId ") List listApi1212(@Param("deptId") String deptId); }