package com.fzzy.async.whhpjl.repository; import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultDepot; import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultDevice; 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 Fz40ToWhjlSync1111Rep extends JpaRepository { /** * 获取仓储设备信息 * * @return */ @Query("from Fz40WhjlDefaultDevice where companyId=:companyId ") List listApi1111(@Param("companyId") String companyId); }