| | |
| | | package com.fzzy.async.whhpjl.repository; |
| | | |
| | | import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultBuilding; |
| | | import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultUser; |
| | | import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultBuild; |
| | | import org.springframework.data.jpa.repository.JpaRepository; |
| | | import org.springframework.data.jpa.repository.Query; |
| | | import org.springframework.data.repository.query.Param; |
| | |
| | | * |
| | | * @Author:YAN |
| | | */ |
| | | public interface Fz40ToWhjlSync1105Rep extends JpaRepository<Fz40WhjlDefaultBuilding, String> { |
| | | public interface Fz40ToWhjlSync1105Rep extends JpaRepository<Fz40WhjlDefaultBuild, String> { |
| | | /** |
| | | * 获取仓房信息 |
| | | * |
| | | * @return |
| | | */ |
| | | @Query("from Fz40WhjlDefaultBuilding where companyId=:companyId ") |
| | | List<Fz40WhjlDefaultBuilding> listApi1105(@Param("companyId") String companyId); |
| | | @Query("from Fz40WhjlDefaultBuild where companyId=:companyId ") |
| | | List<Fz40WhjlDefaultBuild> listApi1105(@Param("companyId") String companyId); |
| | | |
| | | } |