YYC
2025-09-24 715af00851145d97afa322c211dcc44f78238ef1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.fzzy.async.fzzy61.repository;
 
import com.fzzy.async.fzzy61.entity.Fz61DeptDevice;
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 Fzzy61Sync1107Rep extends JpaRepository<Fz61DeptDevice, String> {
    @Query("from Fz61DeptDevice where deptId =:deptId order by sbbh")
    List<Fz61DeptDevice> listDevice(@Param("deptId") String deptId);
}