YYC
2025-07-15 8a50e32fd81269683e99390058ef8603e4af0665
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.fzzy.async.fzzy35.repository;
 
import com.fzzy.async.fzzy35.entity.Fz35Building;
import com.fzzy.async.fzzy35.entity.Fz35MContract;
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;
 
/**
 * 基础信息-仓房信息
 */
public interface Fzzy35Sync1103Rep extends JpaRepository<Fz35Building, String> {
 
    /**
     * 获取仓房信息
     *
     * @return
     */
    @Query("from Fz35Building where deptId=:deptId ")
    List<Fz35Building> listBuilding(@Param("deptId") String deptId);
}