CZT
2023-11-29 81f8164227bd019f8fe0233e0bebfe5614bfa644
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.fzzy.async.whhpjl.repository;
 
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultDepot;
import com.fzzy.async.whhpjl.entity.Fz40WhjlDefaultGranary;
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 Fz40ToWhjlSync1107Rep extends JpaRepository<Fz40WhjlDefaultDepot, String> {
 
    /**
     * 获取货位信息
     *
     * @return
     */
    @Query("from Fz40WhjlDefaultDepot where companyId=:companyId ")
    List<Fz40WhjlDefaultDepot> listApi1107(@Param("companyId") String companyId);
}