package com.fzzy.async.fzzy40.repository; import com.fzzy.async.fzzy40.entity.Fz40DeptDevice; 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 Fzzy40Sync1107Rep extends JpaRepository { @Query("from Fz40DeptDevice where deptId =:deptId order by sbbh") List listDevice(@Param("deptId") String deptId); }