package com.fzzy.async.whhpjl.repository; import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultBuilding; import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultUser; 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 Fz40ToWhjlSync1105Rep extends JpaRepository { /** * 获取仓房信息 * * @return */ @Query("from Fz40WhjlDefaultBuilding where companyId=:companyId ") List listApi1105(@Param("companyId") String companyId); }