package com.fzzy.igds.sys.repository;
|
|
import com.fzzy.igds.dzhwk.domain.Depot;
|
import org.springframework.data.jpa.repository.JpaRepository;
|
import org.springframework.data.jpa.repository.Modifying;
|
import org.springframework.data.jpa.repository.Query;
|
import org.springframework.data.repository.query.Param;
|
import org.springframework.stereotype.Service;
|
import org.springframework.transaction.annotation.Transactional;
|
|
import java.util.List;
|
|
/**
|
* @Description
|
* @Author CZT
|
* @Date 2024/11/22 16:59
|
*/
|
@Service("sys.depotRepository")
|
public interface DepotRepository extends JpaRepository<Depot, String> {
|
|
/**
|
* 根据组织编码获取仓库货位信息
|
*
|
* @param companyId
|
* @return
|
*/
|
@Query("from Depot where companyId =:companyId order by orderNum")
|
List<Depot> getDepotByCompanyId(@Param("companyId") String companyId);
|
|
/**
|
* 根据组织编码和库区编码获取仓库货位信息
|
*
|
* @param companyId
|
* @param deptId
|
* @return
|
*/
|
@Query("from Depot where companyId =:companyId and deptId =:deptId order by orderNum")
|
List<Depot> getDepot(@Param("companyId") String companyId, @Param("deptId") String deptId);
|
|
/**
|
* 根据组织编码和仓库编码获取仓库货位信息
|
* @param companyId
|
* @param id
|
* @return
|
*/
|
@Query("from Depot where companyId =:companyId and id =:id")
|
Depot getDepotById(@Param("companyId") String companyId, @Param("id") String id);
|
|
|
/**
|
* 更新仓库状态
|
* @param status
|
* @param depotId
|
*/
|
@Transactional
|
@Modifying
|
@Query("update Depot set depotStatus =:status where id =:depotId")
|
void updateDepotStatus(@Param("status") String status, @Param("depotId") String depotId);
|
|
/**
|
* 根据ids获取仓库
|
*
|
* @param list
|
* @return
|
*/
|
@Query("from Depot where id IN :list order by orderNum")
|
List<Depot> getDepotByIds(@Param("list") List<String> list);
|
}
|