CZT
2024-01-09 6f06c861bffe6fcf5fb7cf9e2a7003fca856bac0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.fzzy.async.whhpjl.repository;
 
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultDepot;
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultDevice;
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 Fz40ToWhjlSync1111Rep extends JpaRepository<Fz40WhjlDefaultDevice, String> {
    /**
     * 获取仓储设备信息
     *
     * @return
     */
    @Query("from Fz40WhjlDefaultDevice where companyId=:companyId ")
    List<Fz40WhjlDefaultDevice> listApi1111(@Param("companyId") String companyId);
}